
startListbottom = function() {
if (document.all&&document.getElementById) {
cssdropdownRootbottom = document.getElementById("cssdropdownbottom");
for (i=0; i<cssdropdownRootbottom.childNodes.length; i++) {
node = cssdropdownRootbottom.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
}
node.onmouseout=function() {
this.className=this.className.replace(" over", "");
}
}
}
}
}

if (window.attachEvent)
window.attachEvent("onload", startListbottom)
else
window.onload=startListbottom;

