aktbild = 1;

anzahl_bilder = BILDER.length;

function bild_wechseln() {
	if (anzahl_bilder) {
		top.bildleiste_wechsel_url(BILDER[aktbild]);
		aktbild++;
		if (aktbild >= anzahl_bilder) {aktbild = 1;}
		if (anzahl_bilder > 1) {
			window.setTimeout("bild_wechseln()",8000);
			}
		}
	}

bild_wechseln();

for (i=1;i<=anzahl_bilder;i++) {
	eval('bild_' + i + ' = new Image();bild_' + i + '.src = "bilder/' + BILDER[i] + '";');
	}
