var name = navigator.userAgent.toLowerCase();
var Bild = 1;
var max = 4;

function BildwechselStatisch()
{
  //if INTERNET EXPLORER
  if(name.indexOf("msie") > 0)
  {
     Bildwechsel();
  }
  else
  {
    if (Bild > max) Bild = 1;
    window.document.getElementById("kopfbild").style.backgroundImage = 'url(fileadmin/kopfbilder/headerbg' + Bild + '.jpg)';
    Bild = Bild + 1;
    window.setTimeout("BildwechselStatisch()",30000); 
  }
}

function Bildwechsel()
{
  if (Bild > max) Bild = 1;
  // document.all.Kopfbild.filters.blendTrans.Apply();
  window.document.getElementById("kopfbild").style.backgroundImage = 'url(fileadmin/kopfbilder/headerbg' + Bild + '.jpg)';
  // document.all.kopfbild.style.backgroundImage = "url(fileadmin/layout/img/header/headerbg" + Bild + ".jpg)";
  // document.all.Kopfbild.filters.blendTrans.Play();
  Bild = Bild + 1;
  window.setTimeout("Bildwechsel()",30000); 
}




