// JavaScript Document
<!--//--><![CDATA[//><!--

fixHover = function() {
		
	var fixLi = document.getElementById("mainNavArea").getElementsByTagName("LI");	
	for (var i=0; i<fixLi.length; i++) {
		fixLi[i].onmouseover=function() {
			this.style.backgroundColor ="#694674"		
			
		}
		fixLi[i].onmouseout=function() {
			this.style.backgroundColor ="#6b9fbd"
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", fixHover);
//--><!]]>




