liHover = function() {
	var hoverVar = document.getElementById("mnmenu").getElementsByTagName("LI");
	for (var i=0; i<hoverVar.length; i++) {
		hoverVar[i].onmouseover=function() {
			this.className+=" LIhover";
		}
		hoverVar[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" LIhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", liHover);