// JavaScript Document
if(window.navigator.systemLanguage && !window.navigator.language) {
  function hoverIE() {
    var LI = document.getElementById("Navigation1").firstChild;
    do {
      if (sucheUL(LI.firstChild)) {
        LI.onmouseover=einblenden; LI.onmouseout=ausblenden;
      }
      LI = LI.nextSibling;
    }
    while(LI);
	
	var LI = document.getElementById("Navigation2c").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";
  }
  function ausblenden() {
    sucheUL(this.firstChild).style.display = "none";
  }

  window.onload=hoverIE;
}

function clearActive() {
	document.getElementById("Navigation2b").style.display = '';
	document.getElementById("Navigation2c").style.display = '';
	document.getElementById("Navigation3a").style.display = '';
	document.getElementById("Navigation3b").style.display = '';
	document.getElementById("Navigation2d").style.display = '';
	document.getElementById("Navigation2e").style.display = '';
	document.getElementById("Navigation2f").style.display = '';
	document.getElementById("Navigation2g").style.display = '';
}
function clearSubActive() {
	document.getElementById("Navigation3a").style.display = '';
	document.getElementById("Navigation3b").style.display = '';
}

function MM_showHideLayers() { //v9.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) 
  with (document) if (getElementById && ((obj=getElementById(args[i]))!=null)) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
    obj.visibility=v; }
}