<!--

var geschwindigkeit = 6500;
var aktuell = 1;
var opera = false;
if (navigator.userAgent.indexOf('Opera') != -1)
  opera = true;

if (document.images) {

  link = new Array();

  bild1 = new Image();
  bild1.src = "http://www.darc.de/funkmarkt/oeli15.gif";
  link[1] = "http://www.darc.de/agwww-bin1/partner.pl?partner=STECKERPROFI&url=http://www.steckerprofi.de";
 
  bild2 = new Image();
  bild2.src = "http://www.darc.de/grafik/dv_werb0.gif";
  link[2] = "http://www.darcverlag.de/";

}

var anzahl = link.length-1;

function Bilderwechsel()
{
  if (aktuell == anzahl)
    aktuell = 0;
  aktuell++;
  document.images['anibild'].src = window['bild' + aktuell].src;
  setTimeout ('Bilderwechsel()', geschwindigkeit);
}
function neueSeite()
{
  if (document.images)
    top.location.href = link[aktuell];
}
//-->

