      startList = function() {
        document.all.menuDiv.onselectstart = new Function("return false;");

        /*==============          This is a hack to fix IE, cause it only recognises the 'hover' pseudo-class for links.
          So we make it use the 'over' class that we have defined in the CSS.
        ===============*/

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

        /*==============          End of IE hack
        ===============*/
      }

      window.onload=startList;

