function navover(id) {
	document.getElementById(id).style.color = "#FFFFFF";
}

function navout(id) {
	document.getElementById(id).style.color = "#000000";
}

navHover = function() {
	var lis = document.getElementById("navmenu").getElementsByTagName("LI");
	for (var i=0; i<lis.length; i++) {
		lis[i].onmouseover=function() {
			this.className+=" iehover";
			/* TURNED OFF BY REQUEST
			s = document.getElementsByTagName("SELECT");
			for(var f=0; f<s.length; f++)
			{
				s[f].style.visibility='hidden';	
			}
			*/
		}
		lis[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" iehover\\b"), "");
			/* TURNED OFF BY REQUEST
			s = document.getElementsByTagName("SELECT");
			for(var f=0; f<s.length; f++)
			{
				s[f].style.visibility='visible';
			}
			*/
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", navHover);






