var bild = new Array();
bild[0] = new Image();
bild[0].src = "../gfx/diashow/bild1.jpg";
bild[1] = new Image();
bild[1].src = "../gfx/diashow/bild2.jpg";
bild[2] = new Image();
bild[2].src = "../gfx/diashow/bild3.jpg";
bild[3] = new Image();
bild[3].src = "../gfx/diashow/bild4.jpg";
bild[4] = new Image();
bild[4].src = "../gfx/diashow/bild5.jpg";
bild[5] = new Image();
bild[5].src = "../gfx/diashow/bild6.jpg";
bild[6] = new Image();
bild[6].src = "../gfx/diashow/bild7.jpg";
bild[7] = new Image();
bild[7].src = "../gfx/diashow/bild8.jpg";
bild[8] = new Image();
bild[8].src = "../gfx/diashow/bild9.jpg";
bild[9] = new Image();
bild[9].src = "../gfx/diashow/bild10.jpg";
bild[10] = new Image();
bild[10].src = "../gfx/diashow/bild11.jpg";
bild[11] = new Image();
bild[11].src = "../gfx/diashow/bild12.jpg";
bild[12] = new Image();
bild[12].src = "../gfx/diashow/bild13.jpg";
		
var timer,nr=1,zeit=8000;


function playShow(nr){
	
	if(document.all.projector.filters){
		document.all.projector.filters.blendTrans.Apply();
	}
		document.projector.src = bild[nr].src;
	if(document.all.projector.filters){
		document.all.projector.filters.blendTrans.Play();
	}

	
	if(nr<bild.length-1){
		nr++;
	}else{
		nr=0;
	}
	timer = setTimeout("playShow("+nr+")",zeit);
}

function startShow(){
	setTimeout("playShow(1)",zeit);
	if(navigator.userAgent.indexOf("MSIE")<0){
		document.getElementById("ds1").style.top = parseInt(document.getElementById("ds1").style.top)+1;
		document.getElementById("ds2").style.top = parseInt(document.getElementById("ds2").style.top)+1;
	}
	return;
}