<!--
// Borwserunterscheidungsvariabeln
var ns=document&&!document.getElementById; 
var ie=document.all;
var ub=document.getElementById;

// Seitenanfangspfeil Bildwechsel von schwarz auf rot
pfeilon=new Image();
pfeilon.src = "http://www.argleb.de/images/sitedesign/pfeil_oben_n.gif";
pfeiloa = new Image();
pfeiloa.src = "http://www.argleb.de/images/sitedesign/pfeil_oben_a.gif";

function WePfe(Bildname,Bildobjekt)
{
 window.document.images[Bildname].src = Bildobjekt.src;
}

// Farbe wechseln in der navigation

function NaviWechsel (zusatz,zustand,wieviele)
{
 var navioa_1=zusatz+"_1";
 var navioa_2=zusatz+"_2";
 if(wieviele==3){ var navioa_3=zusatz+"_3"; }
 
 
 if(zustand=="over")
 {
  if(ie)
  {
   document.all(navioa_1).style.backgroundColor="#FFFFFF";
   document.all(navioa_2).style.backgroundColor="#FFFFFF";
   if(wieviele==3){ document.all(navioa_3).style.backgroundColor="#FFFFFF"; }
  }
  if(ns){  }
  if(ub)
  {
   document.getElementById(navioa_1).style.backgroundColor="#FFFFFF";
   document.getElementById(navioa_2).style.backgroundColor="#FFFFFF";
   if(wieviele==3){ document.getElementById(navioa_3).style.backgroundColor="#FFFFFF"; }
  }
 }
 
 if(zustand=="out")
 {
  if(ie)
  {
   document.all(navioa_1).style.backgroundColor="#EEEEEE";
   document.all(navioa_2).style.backgroundColor="#EEEEEE";
   if(wieviele==3){ document.all(navioa_3).style.backgroundColor="#EEEEEE"; }
  }
  if(ns){  }
  if(ub)
  {
   document.getElementById(navioa_1).style.backgroundColor="#EEEEEE";
   document.getElementById(navioa_2).style.backgroundColor="#EEEEEE";
   if(wieviele==3){ document.getElementById(navioa_3).style.backgroundColor="#EEEEEE"; }
  }
 }
}

// sonder style fuer hg sonst alles schwarz
if(ns)
{
 document.write("<style type='text/css'><!-- body { background-color:#FFFFFF; } --> </style>");
}
//-->
