// ==================================================
// Autor, Copyright
// --------------------------------------------------
// >KONTAKT  EDV>Marketing>Medien
//  Stefan Stuhlemmer, Ralf Mahlo
//  www.neloh.de | info@neloh.de
//  tel.:  03 55 - 28 900 25
//  mobil: 01 71 - 50 50 385
// --------------------------------------------------
// ==================================================
// Erstellt: 2008-10-24
// ==================================================

var warten=3000;
var bildpos=0;
function bildwechsel() {
	if (!(document.images)) {return;}
	document.wechselBild.src=bilder[bildpos++];
	if (bildpos == bilder.length) { bildpos = 0; }
 	setTimeout("bildwechsel()",warten);
}
function init() {
	if (document.images.wechselBild) { bildwechsel(); }
}

