function flyout () {
	browser=navigator.appName;
	version=navigator.appVersion.substring(0,1);
	if((document.all) && (browser == "Microsoft Internet Explorer") && (version == "6")){ }
	else{
		if (document.all&&document.getElementById) {
			navRoot = document.getElementById("primary").childNodes[0];
			for (i=0; i<navRoot.childNodes.length; i++) {
				node = navRoot.childNodes[i];
				if (node.nodeName=="LI") {
					node.onmouseover = function() {
						this.className+=" flyout-js-over";
					}
					node.onmouseout=function() {
						this.className=this.className.replace(" flyout-js-over", "");
					}
				}
			}
		}
	}
}




if(window.navigator.systemLanguage && !window.navigator.language) {
browser=navigator.appName;
version=navigator.appVersion.substring(0,1);
if((document.all) && (browser == "Microsoft Internet Explorer") && (version == "6")){ }else{
  function hoverIE() {
    var LI = document.getElementById("primary").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 == "div") return UL;
    }
    while(UL);
    return false;
  }

  function einblenden() {
    var UL = sucheUL(this.firstChild);
    UL.style.display = "block";
  }
  function ausblenden() {
    sucheUL(this.firstChild).style.display = "none";
  }

}  //window.onload=hoverIE;
}
