startList = function() {
 if(document.getElementById) {
  navRoot = document.getElementById("menuList");
  for (i=0; i<navRoot.childNodes.length; i++) {
   node = navRoot.childNodes[i];
   if (node.nodeName=="LI") {
    node.onmouseover=function() {
     for(j=1; j < this.childNodes.length ; j++) {
      if(this.childNodes[j].nodeName == "UL") {
       this.childNodes[j].style.display = 'block';
       return;
       j = 200;
      }
     }
    }
    node.onmouseout=function() {
     for(j=1; j < this.childNodes.length ; j++) {
      if(this.childNodes[j].nodeName == "UL") {
       this.childNodes[j].style.display = 'none';
       return;
       j = 200;
      }
     }
    }
   }
  }
 }
}
window.onload=startList;

