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


//start on load
window.onload=startMenu;