// JavaScript Document function hoverIE() { if(window.navigator.systemLanguage && !window.navigator.language) { var LI = document.getElementById("Navigation").firstChild; var LI2 = document.getElementById("Navigation2").firstChild; do { if (sucheUL(LI.firstChild)) { LI.onmouseover=einblenden; LI.onmouseout=ausblenden; } LI = LI.nextSibling; } while(LI); do { if (sucheUL(LI2.firstChild)) { LI2.onmouseover=einblenden2; LI2.onmouseout=ausblenden; } LI2 = LI2.nextSibling; } while(LI2); } 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 = "#8D2F46"; } function ausblenden() { sucheUL(this.firstChild).style.display = "none"; } function einblenden2() { var UL = sucheUL(this.firstChild); UL.style.display = "block"; UL.style.backgroundColor = "#CDC4B6"; } //window.onload=; } function reloadPage(init) { //reloads the window if Nav4 resized if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) { document.pgW=innerWidth; document.pgH=innerHeight; onresize=reloadPage; }} else if (innerWidth!=document.pgW || innerHeight!=document.pgH) location.reload(); } reloadPage(true); function nPos(){ window.txt=window.txt.substring(1,window.txt.length)+window.txt.substring(0,1); document.getElementById("lt").innerHTML=window.txt; } window.onload=function(){ /*if (document.getElementById("lt")){ window.txt=document.getElementById("lt").innerHTML+" ++++ "; var laufen = window.setInterval("nPos()",150); }*/ hoverIE(); }