
var GlobThumbId = 0;
var count = 1;


function PlaySlideShow(iImageGes,count){
	var iGesamt = iImageGes;
	
	if (count <= iGesamt){
		document.getElementById("BildGross").src = aBilder[count].path;
		
		if(count == iGesamt){
			count = 1;
		} else{
			count++;
		};
		
		window.setTimeout('PlaySlideShow('+iGesamt+','+count+')',3000);
	};
	
	
}
