<!-- 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 PicH = new Array();
// to add more images, just continue
// the pattern, adding to the array below

PicH[0] = 'photopageH/01.jpg'
PicH[1] = 'photopageH/02.jpg'
PicH[2] = 'photopageH/03.jpg'
PicH[3] = 'photopageH/04.jpg'
PicH[4] = 'photopageH/05.jpg'
PicH[5] = 'photopageH/06.jpg'
PicH[6] = 'photopageH/07.jpg'
PicH[7] = 'photopageH/08.jpg'

// do not edit anything below this line
var t;
// next line the 'm' is 'j' in slideshowV.js
// var m = 0;
var j = 0;
var p = PicH.length;
var k = PicH.length - 1;
var preLoad = new Array();
// next line the 'n' is 'i' in slideshowV.js
// for (n = 0; n < p; n++) {
for (i = 0; i < p; i++) {
	j = (Math.round(Math.random()*k))
	preLoad[i] = new Image();
	preLoad[i].src = PicH[j];
	PicH[j] = PicH[k];
	k--
}
function runSlideShowH() {
	if (document.all) {
		document.images.SlideShowH.style.filter="blendTrans(duration=2)";
		document.images.SlideShowH.style.filter="blendTrans(duration=crossFadeDuration)";
		document.images.SlideShowH.filters.blendTrans.Apply();
	}
	if (j >= p) {
		j = 0;
	}
	document.images.SlideShowH.src = preLoad[j].src;
	j++
	if (document.all) {
		document.images.SlideShowH.filters.blendTrans.Play();
	}
	t = setTimeout('runSlideShowH()', slideShowSpeed);
}

//  End -->
