<!--

// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 3000;
// Duration of crossfade (seconds)
var crossFadeDuration = 3;
// Specify the image files
var Pic = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = 'gallery/album/1.jpg'
Pic[1] = 'gallery/album/2.jpg'
Pic[2] = 'gallery/album/3.jpg'
Pic[3] = 'gallery/album/4.jpg'
Pic[4] = 'gallery/album/5.jpg'
Pic[5] = 'gallery/album/6.jpg'
Pic[6] = 'gallery/album/7.jpg'
Pic[7] = 'gallery/album/8.jpg'

// do not edit anything below this line
var tt;
var jj = 0;
var pp = Pic.length;
var preLoad = new Array();
for (ii = 0; ii < pp; ii++) {
preLoad[ii] = new Image();
preLoad[ii].src = Pic[ii];
}

function runSlideShow() {
if (document.all) {
document.images.SlideShow.style.filter="blendTrans(duration=2)";
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow.filters.blendTrans.Apply();
}
document.images.SlideShow.src = preLoad[jj].src;
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
jj = jj + 1;
if (jj > (pp - 1)) jj = 0;
tt = setTimeout('runSlideShow()', slideShowSpeed);
}

// -->
