var ieHoverSideMenu = function() {
		var LIs = document.getElementsByTagName("LI");
		for (i=0; i<LIs.length; i++) {
			LIs[i].onmouseover= function() {this.className += " hover";}
			LIs[i].onmouseout = function() {this.className = this.className.replace(" hover", "");  }
		}
}
if (window.attachEvent) window.attachEvent("onload", ieHoverSideMenu);
