
if (self.document.images)
{
var bild_1 = new Image();bild_1.src = "bilder/thema.png";
var bild_2 = new Image();bild_2.src = "bilder/thema2.png";
var timeout_id_bildwechsel = null;
}
function STARTE_BILDWECHSEL()
{if (self.document.images)
      {timeout_id_bildwechsel = setTimeout("self.BILD_WECHSEL(2)",5000);}
  else{self.document.images["BILDWECHSEL"].alt = " leider nur ein standbild ";}
}
function BILD_WECHSEL(i)
{clearTimeout(timeout_id_bildwechsel);
  var k = i;
  self.document.images["BILDWECHSEL"].src = eval("bild_"+k+".src");
  k++;
  if (k >= 3) {k = 1;}
  timeout_id_bildwechsel = setTimeout("self.BILD_WECHSEL("+k+")",5000);
}

