
<!-- 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 slideShowSpeed2 = 4000;
// Duration of crossfade (seconds)
var crossFadeDuration2 = 2;
// Specify the image files
var Images = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Images[0] = 'photos/home/slideshow/fenn-photo-01.jpg'
Images[1] = 'photos/home/slideshow/fenn-photo-02.jpg'
Images[2] = 'photos/home/slideshow/fenn-photo-03.jpg'
Images[3] = 'photos/home/slideshow/fenn-photo-04.jpg'
Images[4] = 'photos/home/slideshow/fenn-photo-05.jpg'
Images[5] = 'photos/home/slideshow/fenn-photo-06.jpg'
Images[6] = 'photos/home/slideshow/fenn-photo-07.jpg'
Images[7] = 'photos/home/slideshow/fenn-photo-08.jpg'
Images[8] = 'photos/home/slideshow/fenn-photo-09.jpg'
Images[9] = 'photos/home/slideshow/fenn-photo-10.jpg'
Images[10] = 'photos/home/slideshow/fenn-photo-11.jpg'
Images[11] = 'photos/home/slideshow/fenn-photo-12.jpg'


// do not edit anything below this line
var t2;
var j2 = 0;
var p2 = Images.length;
var preLoad2 = new Array();
for (i2 = 0; i2 < p2; i2++) {
preLoad2[i2] = new Image();
preLoad2[i2].src = Images[i2];
}

function runHomeImages() {
if (document.all) {
document.images.Image.style.filter="blendTrans(duration=2)";
document.images.Image.style.filter="blendTrans(duration=crossFadeDuration2)";
document.images.Image.filters.blendTrans.Apply();
}
document.images.Image.src = preLoad2[j2].src;
if (document.all) {
document.images.Image.filters.blendTrans.Play();
}
j2 = j2 + 1;
if (j2 > (p2 - 1)) j2 = 0;
t2 = setTimeout('runHomeImages()', slideShowSpeed2);
}
//  End -->
