// Magazin_Wechsel NEU
var Bilder = new Array("http://lz-nrw.de/zs_image/images.php?img=39","http://lz-nrw.de/zs_image/images.php?img=28", "http://lz-nrw.de/zs_image/images.php?img=137", "http://lz-nrw.de/zs_image/images.php?img=98", "http://lz-nrw.de/zs_image/images.php?img=202", "http://lz-nrw.de/zs_image/images.php?img=75", "http://lz-nrw.de/zs_image/images.php?img=77", "http://lz-nrw.de/zs_image/images.php?img=200", "http://lz-nrw.de/zs_image/images.php?img=95");
var Delay = 3000;

var BildAnzahl = Bilder.length;
var number = 0;
BildFolge = new Image(); BildFolge.src = Bilder[number];

function change() {

number++;
if (number == BildAnzahl) number = 0;

BildFolge.src = Bilder[number];
document.austausch.src = BildFolge.src;
}

setInterval("change()", Delay);
