stuHover=function(){var c;var d;for(var b=0;b<document.styleSheets.length;b++){for(var a=0;a<document.styleSheets[b].rules.length;a++){c=document.styleSheets[b].rules[a];if(c.selectorText.indexOf("LI:hover")>=0){d=c.selectorText.replace(/LI:hover/gi,"LI.iehover");document.styleSheets[b].addRule(d,c.style.cssText)}}}var e=document.getElementById("nav").getElementsByTagName("LI");for(var b=0;b<e.length;b++){e[b].onmouseover=function(){this.className+=" iehover"};e[b].onmouseout=function(){this.className=this.className.replace(new RegExp(" iehover\\b"),"")}}};if(window.attachEvent){window.attachEvent("onload",stuHover)};