ieHover = function(){
	if(document.getElementById("hnav0")){
		var ieEls = document.getElementById("hnav0").getElementsByTagName("LI");
		for (var i=0; i<ieEls.length; i++){
			ieEls[i].onmouseover=function(){
				if(this.className.indexOf("isparent")>0)this.className+=" iehover parenthover";
				else this.className+=" iehover";
				//alert(this.classname);
			}
			ieEls[i].onmouseout=function(){
				this.className=this.className.replace(new RegExp(" iehover\\b"), "");
				this.className=this.className.replace(new RegExp(" parenthover\\b"), "");
			}
		}
	}
}
if (window.attachEvent)window.attachEvent("onload", ieHover);