// JavaScript Document

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