Bilder=new Array('585_DE%2dPartnerlogos%5fTechnologiemarketing%2dVOeSI.jpeg','584_DE%2dPartnerlogos%5fTechnologiemarketing%2dMobilkom.jpeg','583_DE%2dPartnerlogos%5fTechnologiemarketing%2dLexPress.gif','582_DE%2dPartnerlogos%5fTechnologiemarketing%2dPour%5fElle%5fIT%5fSalon.jpeg')
Bilderlinks=new Array('http://www.voesi.or.at','http://www.mobilkom.at','http%3a%2f%2fwww%2elexpress%2dzeitung%2ecom','http://www.it-salon.org')
var Einblendungsdauer = 2000; 
var Unendlich = true;
var a = 0;
function gotolink()
{
   if(this.gotol!="")  {
      window.open(unescape(this.gotol))
      // top.location=unescape(this.gotol)
   }
}
function BildAnimieren() 
{
   if (!document.Img1)return
   if(Unendlich == true)
   {
      document.images["Img1"].src = Bilder[a % Bilder.length];
      document.images["Img1"].onclick = gotolink
      document.images["Img1"].gotol=Bilderlinks[a % Bilder.length];
      
      document.images["Img2"].src = Bilder[(a+1) % Bilder.length];      
      document.images["Img2"].onclick = gotolink
      document.images["Img2"].gotol=Bilderlinks[(a+1) % Bilder.length];
      
      document.images["Img3"].src = Bilder[(a+2) % Bilder.length];      
      document.images["Img3"].onclick = gotolink
      document.images["Img3"].gotol=Bilderlinks[(a+2) % Bilder.length];
      document.images["Img4"].src = Bilder[(a+3) % Bilder.length];      
      document.images["Img4"].onclick = gotolink
      document.images["Img4"].gotol=Bilderlinks[(a+3) % Bilder.length];
      a++;
      if(a == Bilder.length){a=0;}
      window.setTimeout("BildAnimieren()", Einblendungsdauer);
   }
}
window.onload=BildAnimieren