// Achtung: wenn im Body-Tag die onload-Funktion aktiviert ist, funzt dieses Skript nicht mehr, weil das unten stehende onload überschrieben wird
function hoverIE() {
   
   var CN = document.getElementById("menuTop").firstChild; //firstMenuMain
 //  if (navigator.appName.indexOf("Explorer") != -1)
    do {
         if (CN.firstChild.nextSibling) //ul existiert
            {
              CN.onmouseover=einblenden;
              CN.onmouseout=ausblenden;
            }   
         CN = CN.nextSibling;
     }
     while (CN);
  }
	
  var i=0;
function einblenden() {
    this.firstChild.nextSibling.style.display = "block";   
  }
function ausblenden() {
    this.firstChild.nextSibling.style.display = "none";
  }
window.onload = hoverIE;