startList = function()
{ if (document.all&&document.getElementById)
{ if(document.getElementById("top-nav-menu"))
{ navRoot = document.getElementById("top-nav-menu").getElementsByTagName("li"); for (i=0; i<navRoot.length; i++)
{ node = navRoot[i]
if (node.nodeName=="LI")
{ node.onmouseover=function()
{ this.className+="over"; this.style.zIndex=8200;}
node.onmouseout=function()
{ this.className=this.className.replace("over", "");}
}
}
}
}
}
startList2 = function()
{ if (document.all&&document.getElementById)
{ if(document.getElementById("left-nav-menu"))
{ navRoot = document.getElementById("left-nav-menu").getElementsByTagName("li"); for (i=0; i<navRoot.length; i++)
{ node = navRoot[i]
if (node.nodeName=="LI")
{ node.onmouseover=function()
{ this.className+="over"; this.style.zIndex=8200;}
node.onmouseout=function()
{ this.className=this.className.replace("over", "");}
}
}
}
}
}
function onloadfixers()
{ startList(); startList2();}
window.onload=onloadfixers; 