// SLIDESHOW// Set slideShowSpeed (milliseconds)	var slideShowSpeed = 4000;	// Duration of crossfade (seconds)	var crossFadeDuration = 3;		var Pic = new Array();		for (var z = 0; z < numPics; z++)		Pic[z] = "photos/images/photo_" + (z+1) + ".jpg";	var t;	//var j = 0;	var p = Pic.length;		function playSlideShow()	{		if (document.all)		{			document.getElementById('imageView').style.filter="blendTrans(duration=2)";			document.getElementById('imageView').style.filter="blendTrans(duration=crossFadeDuration)";			document.getElementById('imageView').filters.blendTrans.Apply();		}				document.getElementById('imageView').src = Pic[currPic];				if (document.all)			document.getElementById('imageView').filters.blendTrans.Play();				++currPic;				if (currPic > (p-1))			currPic=0;				DisplayImageCounter();		t = setTimeout('playSlideShow()', slideShowSpeed);	}		function stopSlideShow()	{		clearTimeout(t);	}