

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

	var Picture2 = new Array();
	var Caption2 = new Array();
	
		Picture2[1] = '/Static/Images/fotob1.jpg'; 
	Caption2[1] = "Projectvoorbeeldb1";
		Picture2[2] = '/Static/Images/fotob2.jpg'; 
	Caption2[2] = "Projectvoorbeeldb2";
		Picture2[3] = '/Static/Images/fotob3.jpg'; 
	Caption2[3] = "Projectvoorbeeldb3";
	
	var tss2;
	var iss2;
	var jss2 = 1;
	var pss2 = Picture2.length-1;
	var preLoad2 = new Array();
	
	for (iss2 = 1; iss2 < pss2+1; iss2++){
	preLoad2[iss2] = new Image();
	preLoad2[iss2].src = Picture2[iss2];
	}
	
	function runSlideShow2(){ // diashow in vak #3
	if (document.all){
	document.images.PictureBox2.style.filter="blendTrans(duration=2)";
	document.images.PictureBox2.style.filter="blendTrans(duration=CrossFadeDuration2)";
	document.images.PictureBox2.filters.blendTrans.Apply();}
	document.images.PictureBox2.src = preLoad2[jss2].src;
	if (document.all) document.images.PictureBox2.filters.blendTrans.Play();
	jss2 = jss2 + 1;
	if (jss2 > (pss2)) jss2=1;
	tss2 = setTimeout('runSlideShow2()', SlideShowSpeed2);
	}
