
// JavaScript Document

var Geschwindigkeit = 5000 , aktuell = 1;

if (document.images) {
 link = new Array();

 bild1 = new Image();
 bild1.src = "http://www.stocksandimports.nl/gfx/breo-products/mlc-4-260125.jpg";
 link[1] = "";

 bild2 = new Image();
 bild2.src = "http://www.stocksandimports.nl/gfx/breo-products/mlc-1-260125.jpg";
 link[2] = "";

 bild3 = new Image();
 bild3.src = "http://www.stocksandimports.nl/gfx/breo-products/mlc-2-260125.jpg";
 link[3] = "";

 bild4 = new Image();
 bild4.src = "http://www.stocksandimports.nl/gfx/breo-products/mlc-3-260125.jpg";
 link[4] = "";

}

var anzahl = link.length-1;

function Bilderwechsel(){
 if (aktuell == anzahl)
  aktuell = 0; aktuell++;
  document.images['Banner'].src = window['bild' + aktuell].src;
  setTimeout ('Bilderwechsel()', Geschwindigkeit)
}

function neueSeite(){
 if (document.images)
 top.location.href = link[aktuell]
}




