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