<script type="text/javascript">
if(window.navigator.systemLanguage && !window.navigator.language) {
  function hoverIE() {
    var LI = document.getElementById("Navigation").firstChild;
    do {
      if (sucheUL(LI.firstChild)) {
        LI.onmouseover=einblenden; LI.onmouseout=ausblenden;
      }
      LI = LI.nextSibling;
    }
    while(LI);
  }

  function sucheUL(UL) {
    do {
      if(UL) UL = UL.nextSibling;
      if(UL && UL.nodeName == "UL") return UL;
    }
    while(UL);
    return false;
  }

  function einblenden() {
    var UL = sucheUL(this.firstChild);
    UL.style.display = "block"; UL.style.backgroundColor = "silver";
  }
  function ausblenden() {
    sucheUL(this.firstChild).style.display = "none";
  }

	function popup(dateiname, titel, thewidth, theheight, winX, winY) {
	  F = window.open('','pop','width='+thewidth+',height='+theheight+',left='+winX+',top='+winY+',');
	  F.document.write('<html><head><title>'+titel+'</title></head><body style="margin:0;padding:0;">');
	  F.document.write('<img src="'+dateiname+'" style="cursor:pointer" onclick="self.close()" alt="'+titel+'" title="[Fenster schlie&szlig;en]" />');
	  F.document.write('</body></html>');
	}
  window.onload=hoverIE;
}




</script>

