IEHover = function() {
	var elems = document.getElementById("Menu").getElementsByTagName("li");
	for (var i=0; i<elems.length; i++) {
		elems[i].onmouseover=function() {this.className="Hover";}
		elems[i].onmouseout=function() {this.className="";}
	}
}
if (window.attachEvent) window.attachEvent("onload", IEHover);