ieHover=function(){
	if (document.all && document.getElementById) {
	var LIs = document.getElementsByTagName("LI");
	
	for(i=0;i<LIs.length;i++){
		LIs[i].onmouseover=function(){
			//alert (this.parentElement.tagName);
			this.className+="iehover";
			//alert(this.className);
		}
		LIs[i].onmouseout=function(){
			this.className=this.className.replace(new RegExp("iehover\\b"),"");
		}
	}
	}
}
if(window.attachEvent)window.attachEvent("onload",ieHover);