if (iens6){
var laufobj=document.getElementById? document.getElementById("inhalt") : document.all.inhalt
var inhalthoehe=laufobj.offsetHeight
}
else if (ns4){
var laufobj=document.nskasten.document.nsinhalt
var inhalthoehe=laufobj.clip.height
}
function nachuntenscrollen(){
if (iens6&&parseInt(laufobj.style.top)>=(inhalthoehe*(-1)+300))
laufobj.style.top=parseInt(laufobj.style.top)-speed
else if (ns4&&laufobj.top>=(inhalthoehe*(-1)+100))
laufobj.top-=speed
nachuntenscrollenvar=setTimeout("nachuntenscrollen()",100)
}
function nachobenscrollen(){
if (iens6&&parseInt(laufobj.style.top)<=0)
laufobj.style.top=parseInt(laufobj.style.top)+speed
else if (ns4&&laufobj.top<=0)
laufobj.top+=speed
nachobenscrollenvar=setTimeout("nachobenscrollen()",100)
}
function getinhalt_hoehe(){
if (iens6)
inhalthoehe=laufobj.offsetHeight
else if (ns4)
document.nskasten.document.nsinhalt.visibility="show"
}


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 = "#333333";
  }
  function ausblenden() {
    sucheUL(this.firstChild).style.display = "none";
  }

}window.onload=function() {
	getinhalt_hoehe();
	hoverIE();
}