var SlideShowSpeed = 5000;
var CrossFadeDuration = 3;
var t, i, j = 0, p = Picture.length-1; ie = ((navigator.userAgent.indexOf("5.5") > 0 || navigator.userAgent.indexOf("6.") > 0) && document.all);

var preLoad = new Array();
for (i = 0; i < p+1; i++){
preLoad[i] = new Image();
preLoad[i].src = "Images/" + Picture[i];}

function runSlideShow(){
	if (ie){
		document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
		document.images.PictureBox.filters.blendTrans.Apply();
	}
	document.images.PictureBox.src = preLoad[j].src;
	if (ie) document.images.PictureBox.filters.blendTrans.Play();
		j++;
	if (j > p) j=0;
	t = setTimeout('runSlideShow()', SlideShowSpeed);
}


window.onload = runSlideShow;