if (window.navigator.systemLanguage && !window.navigator.language)
{
 var backgroundColor= "rgb( 2, 54, 3);";
 var border= "1px #000000 solid;";
 var highlightBackgroundColor= "rgb( 29, 81, 26);";
 var highlightBorder= "1px #ffff99 solid;";
 function hoverIE()
 {
  var LI= document.getElementById( "Menubar").firstChild;
  do
  {
   LI.onmouseover= submenuEinblenden;
   LI.onmouseout= submenuAusblenden;
   var UL= sucheUL( LI.firstChild);
   if (UL)
   {
    var LI2= UL.firstChild;
    while (LI2)
    {
     LI2.onmouseover= submenuitemHighlight;
     LI2.onmouseout= submenuitemNormal;
     LI2= LI2.nextSibling;
    }
   }
   LI= LI.nextSibling;
  } while(LI);
  
  LI= document.getElementById( "Navmenubar").firstChild;
  do
  {
   LI.onmouseover= submenuitemHighlight;
   LI.onmouseout= submenuitemNormal;
   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 submenuEinblenden()
 {
  var UL= sucheUL( this.firstChild);
  if (UL)
   UL.style.display= "block";
  this.style.backgroundImage= "url(images/btn_black_blue.gif)";
 }
 function submenuAusblenden()
 {
  var UL= sucheUL( this.firstChild);
  if (UL)
   UL.style.display= "none";
  this.style.backgroundImage= "url(images/btn_black_green.gif)";
 }
 function submenuitemHighlight()
 {
  this.style.backgroundColor= highlightBackgroundColor;
  this.style.border= highlightBorder;
 }
 function submenuitemNormal()
 {
  this.style.backgroundColor= backgroundColor;
  this.style.border= border;
 }
 window.onload= hoverIE;
}

