function mostraMenu(menuCorrente) {
  if (document.getElementById) {
    questoMenu = document.getElementById(menuCorrente).style
    if (questoMenu.display == "block") {
      questoMenu.display = "none"
    }
    else {
      questoMenu.display ="block"
    }
    return false
  }
  else {
    return true
  }
}

startMenu = function() {
  if (document.all&&document.getElementById) {
    cssmenu = document.getElementById("csstopmenu");
    for (i=0; i<cssmenu.childNodes.length; i++) {
      node = cssmenu.childNodes[i];
      if (node.nodeName=="LI") {
        node.onmouseover=function() {
          this.className+=" over";
        }
        node.onmouseout=function(){                  
          this.className=this.className.replace(" over", "")
        }
      }
    }
  }
}

if (window.attachEvent)
  window.attachEvent("onload", startMenu)
else
  window.onload=startMenu;