<!-- Begin
// Set slideShowSpeed (milliseconds)
var ShowSpeed = 5000;
// Duration of crossfade (seconds)
var crossFadeDuration = 4;
// Specify the image files
var Img = new Array();
// to add more images, just continue
// the pattern, adding to the array below
 
Img[0] = '/images/hom1.jpg'
Img[1] = '/images/hom2.jpg'
Img[2] = '/images/hom3.jpg'
 
// do not edit anything below this line
var t;
var j = 0;
var p = Img.length;
var preLoad = new Array();
for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Img[i];
}
function runShow() {
if (document.all) {
document.images.Show.style.filter="blendTrans(duration=10)";
document.images.Show.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.Show.filters.blendTrans.Apply();
}
document.images.Show.src = preLoad[j].src;
if (document.all) {
document.images.Show.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runShow()', ShowSpeed);
}

//  End -->

