  function navHover() {
    var LI = document.getElementById("navMain").firstChild;
    do {
      if (getUL(LI.firstChild)) {
        LI.onmouseover=show; LI.onmouseout=hide;
      }
      LI = LI.nextSibling;
    }
    while(LI);
  }

  function getUL(UL) {
    do {
      if(UL) UL = UL.nextSibling;
      if(UL && UL.nodeName == "UL") return UL;
    }
    while(UL);
    return false;
  }

  function show() {
    var UL = getUL(this.firstChild);
    UL.style.display = "block";
  }
  function hide() {
    getUL(this.firstChild).style.display = "none";
  }



