// e-world medien-design (c) 99 - 03
// PEPATO | GROUP
var dia = new Array();
dia[0] = new dia_loading("images/masch1.jpg");
dia[1] = new dia_loading("images/masch2.jpg");
dia[2] = new dia_loading("images/masch3.jpg");
dia[3] = new dia_loading("images/masch4.jpg");
dia[4] = new dia_loading("images/masch5.jpg");
dia[5] = new dia_loading("images/masch6.jpg");

function dia_loading(bildurl)
{
	this.bild     = new Image();
	this.bild.src = bildurl;
}
function change_dia(change)
{
	if (change > dia.length-1)
	  change =0;
	self.document.diabild.src = dia[change].bild.src;
	timeOutString = "change_dia("+(change+1).toString()+")";
	timerID = setTimeout(timeOutString,5000);
}






