
if($('mainimg_start')){
	startSlideShow($('mainimg_start'), '/images/main/slide/', ['0.jpg','1.jpg','2.jpg','3.jpg','4.jpg','5.jpg','6.jpg','7.jpg','8.jpg','9.jpg']);
}

function startSlideShow(object, path, imgarr){
	
	object.imgarr = imgarr;
	object.path = path;
	object.aktpic = 0;//Math.round(Math.random()*imgarr.length);
	setTimeout('runSlideShow("' + object.id + '")', 4000);

}
function runSlideShow(objectid){
	object = document.getElementById(objectid);
	if (document.all){
		object.style.filter='blendTrans(duration='+'1,5'+')';
		object.filters.blendTrans.Apply();   
	}
	/*zw = Math.round(Math.random()*object.imgarr.length);
	while(zw==object.aktpic && object.imgarr.length>1){
		zw = Math.round(Math.random()*object.imgarr.length);
	}*/
	object.aktpic++;
	if(object.aktpic>=object.imgarr.length){
		object.aktpic = 0;
	}
	object.src = object.path + object.imgarr[object.aktpic];
	if (document.all){
		object.filters.blendTrans.Play();
	}
	setTimeout('runSlideShow("' + objectid + '")', 4000);
}
function documentWrite(str){document.write(str)}function elementSetHTML(element,code){element.innerHTML=code}
