navHover = function() {
	var lis = document.getElementById("navmenu").getElementsByTagName("LI");
	for (var i=0; i<lis.length; i++) {
		lis[i].onmouseover=function() {
			this.className+=" iehover";
		}
		 lis[i].onmouseout=function() {
		   var li = this;
		   li.className=li.className.replace(new RegExp(" iehover\\b"), "");
		   //setTimeout(function(){
			//li.className=li.className.replace(new RegExp(" iehover\\b"), "");
		   //}, 10);
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", navHover);
