	
	
	var SlideShowSpeed3 = 5000; // Speed in vak #3
	var CrossFadeDuration3 = 1000; // duration of crossfade (in seconds) in vak #3

	var Picture3 = new Array();
	var Caption3 = new Array();
	
		Picture3[1] = '/Static/Images/fotoc1.jpg'; 
	Caption3[1] = "Projectvoorbeeldc1";
		Picture3[2] = '/Static/Images/fotoc2.jpg'; 
	Caption3[2] = "Projectvoorbeeldc2";
		Picture3[3] = '/Static/Images/fotoc3.jpg'; 
	Caption3[3] = "Projectvoorbeeldc3";
	
	var tss3;
	var iss3;
	var jss3 = 1;
	var pss3 = Picture3.length-1;
	var preLoad3 = new Array();
	
	for (iss3 = 1; iss3 < pss3+1; iss3++){
	preLoad3[iss3] = new Image();
	preLoad3[iss3].src = Picture3[iss3];
	}
	
	function runSlideShow3(){ // diashow in vak #3
	if (document.all){
	document.images.PictureBox3.style.filter="blendTrans(duration=2)";
	document.images.PictureBox3.style.filter="blendTrans(duration=CrossFadeDuration3)";
	document.images.PictureBox3.filters.blendTrans.Apply();}
	document.images.PictureBox3.src = preLoad3[jss3].src;
	if (document.all) document.images.PictureBox3.filters.blendTrans.Play();
	jss3 = jss3 + 1;
	if (jss3 > (pss3)) jss3=1;
	tss3 = setTimeout('runSlideShow3()', SlideShowSpeed3);
	}