IEHover = function() {
 var LIs = document.getElementById("barremenus").getElementsByTagName("li");
 for (var i=0; i<LIs.length; i++) {
   LIs[i].onmouseover=function() {
     this.className="IEHover";
   }
   LIs[i].onfocus=function() {
     this.className="IEHover";
   }
   LIs[i].onmouseout=function() {
     this.className=this.className.replace(new RegExp("IEHover\\b"), "");
   }
   LIs[i].onblur=function() {
     this.className=this.className.replace(new RegExp("IEHover\\b"), "");
   }
 }
}

 if (window.attachEvent) window.attachEvent("onload",IEHover);
