<!--
// Navigation: Willson: wnavi.js   dazugeh”rendes css: wnavi.css 


  function hoverIE1( nam) {
    var LI = document.getElementById( nam ).firstChild;
    do {
      if(LI.firstChild) {  // A (SPAN)
        if(LI.firstChild.nextSibling) {  // #text
          if(LI.firstChild.nextSibling.nextSibling) {  // UL ?
            LI.onmouseover=einblenden; LI.onmouseout=ausblenden;
          }
        }
      }
      LI = LI.nextSibling;
    }
    while(LI);
  }

  function hoverIE( ) {
     hoverIE1( "n00");
     hoverIE1( "n01");
     hoverIE1( "n02");
     hoverIE1( "n03");
     hoverIE1( "n04");
     hoverIE1( "n05");
     hoverIE1( "n06");
     hoverIE1( "n07");
     hoverIE1( "n08");
     hoverIE1( "n09");
     hoverIE1( "n10");
     hoverIE1( "n11");
  }
  

  function einblenden() {
    this.firstChild.nextSibling.nextSibling.style.display = "block";
    this.firstChild.nextSibling.nextSibling.style.backgroundColor = "silver";
  }
  function ausblenden() {
    this.firstChild.nextSibling.nextSibling.style.display = "none";
  }

  window.onload=hoverIE;

// -->


