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")!=-1){D=C.selectorText.replace(/LI:hover/gi,"LI.iehover");
document.styleSheets[B].addRule(D,C.style.cssText)
}}}var E=document.getElementById("navList").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)
};