// JavaScript Document
function menuFix() {
var sfEls = document.getElementById("navmenu").getElementsByTagName("li");
for (var i=0; i<sfEls.length; i++) {
sfEls[i].onmouseover=function() {
this.className+=(this.className.length>0? " ": "") + "iehover";
}
sfEls[i].onMouseDown=function() {
this.className+=(this.className.length>0? " ": "") + "iehover";
}
sfEls[i].onMouseUp=function() {
this.className+=(this.className.length>0? " ": "") + "iehover";
}
sfEls[i].onmouseout=function() {
this.className=this.className.replace(new RegExp("( ?|^)iehover\\b"),"");
}
}
}
window.onload=menuFix;

//navHover = function() {
//var lis = document.getElementById("navmenu").getElementsByTagName("LI");
//for (var i=0; i<lis.length; i++) {
//lis[i].onmouseover=function() {
//this.className+=" iehover";
//}
//lis[i].onmouseout=function() {
//this.className=this.className.replace(new RegExp(" iehover\\b"), "");
//}
//}
//}
//if (window.attachEvent) window.attachEvent("onload", navHover);
//setTimeout(navHover,1000)