<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 5000;
// 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] = 'photos/p1.jpg'
Pic[1] = 'photos/p2.jpg'
Pic[2] = 'photos/p3.jpg'
Pic[3] = 'photos/p4.jpg'
Pic[4] = 'photos/p5.jpg'
Pic[5] = 'photos/p6.jpg'
Pic[6] = 'photos/p7.jpg'
Pic[7] = 'photos/p8.jpg'
Pic[8] = 'photos/p9.jpg'
Pic[9] = 'photos/p10.jpg'
Pic[10] = 'photos/p11.jpg'
Pic[11] = 'photos/p12.jpg'
Pic[12] = 'photos/p13.jpg'
Pic[13] = 'photos/p14.jpg'
Pic[14] = 'photos/p15.jpg'
Pic[15] = 'photos/p16.jpg'
Pic[16] = 'photos/p17.jpg'
Pic[17] = 'photos/p18.jpg'
Pic[18] = 'photos/p19.jpg'
Pic[19] = 'photos/p20.jpg'
Pic[20] = 'photos/p21.jpg'
Pic[21] = 'photos/p22.jpg'
Pic[22] = 'photos/p23.jpg'
Pic[23] = 'photos/p24.jpg'
Pic[24] = 'photos/p25.jpg'
Pic[25] = 'photos/p26.jpg'
Pic[26] = 'photos/p27.jpg'
Pic[27] = 'photos/p28.jpg'
Pic[28] = 'photos/p29.jpg'
Pic[29] = 'photos/p30.jpg'
Pic[30] = 'photos/p31.jpg'
Pic[31] = 'photos/p32.jpg'
Pic[32] = 'photos/p33.jpg'
Pic[33] = 'photos/p34.jpg'
Pic[34] = 'photos/p35.jpg'
Pic[35] = 'photos/p36.jpg'
Pic[36] = 'photos/p37.jpg'
Pic[37] = 'photos/p38.jpg'
Pic[38] = 'photos/p39.jpg'
Pic[39] = 'photos/p40.jpg'
Pic[40] = 'photos/p41.jpg'
Pic[41] = 'photos/p42.jpg'
Pic[42] = 'photos/p43.jpg'

// do not edit anything below this line
var t;
var j = 0;
var p = Pic.length;
var preLoad = new Array();
for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
}
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[j].src;
if (document.all) {
document.images.slideshow.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runslideshow()', slideShowSpeed);
}
//  End -->