// JavaScript Document

  function startList() {
    if (document.all&&document.getElementById) {
      navRoot = document.getElementById("menu");
      menuRoot = navRoot.childNodes[0];
      for (i=0; i<menuRoot.childNodes.length; i++) {
        node = menuRoot.childNodes[i];
//        if (i==0) alert(node.nodeName);
        if (node.nodeName=="LI") {
          node.onmouseover=function() {
            this.className+=" over";
          }
          node.onmouseout=function() {
            this.className=this.className.replace(" over", "");
          }
        }
      }
    }
  }

var oldload = window.onload;
window.onload=function() { startList(); oldload(); }