<!-- Original:  CodeLifter.com (support@codelifter.com) -->
<!-- Web Site:  http://www.codelifter.com -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 8000;
// Duration of crossfade (seconds)
var crossFadeDuration = 3;
// Specify the image files
var PicV = new Array();
// to add more images, just continue
// the pattern, adding to the array below

PicV[0] = 'photopage/01.jpg'
PicV[1] = 'photopage/02.jpg'
PicV[2] = 'photopage/03.jpg'
PicV[3] = 'photopage/04.jpg'
PicV[4] = 'photopage/05.jpg'
PicV[5] = 'photopage/06.jpg'
PicV[6] = 'photopage/07.jpg'
PicV[7] = 'photopage/08.jpg'

// do not edit anything below this line
var t;
var j = 0;
var p = PicV.length;
var k = PicV.length - 1;
var preLoadV = new Array();
for (i = 0; i < p; i++) {
	j = (Math.round(Math.random()*k))
	preLoadV[i] = new Image();
	preLoadV[i].src = PicV[j];
	PicV[j] = PicV[k];
	k--
}
function runSlideShowV() {
	if (document.all) {
		document.images.SlideShowV.style.filter="blendTrans(duration=2)";
		document.images.SlideShowV.style.filter="blendTrans(duration=crossFadeDuration)";
		document.images.SlideShowV.filters.blendTrans.Apply();
	}
	if (j >= p) {
		j = 0;
	}
	document.images.SlideShowV.src = preLoadV[j].src;
	j++
	if (document.all) {
		document.images.SlideShowV.filters.blendTrans.Play();
	}
	t = setTimeout('runSlideShowV()', slideShowSpeed);
}

//  End -->
