<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeed1= 3000;

// Duration of crossfade (seconds)

var crossFadeDuration1= 30;

// Specify the image files
var Pic1 = new Array();

// to add more images, just continue
// the pattern, adding to the array below

Pic1[0] = './gallery/ch1.jpg'
Pic1[1] = './gallery/ch2.jpg'
Pic1[2] = './gallery/ch3.jpg'
Pic1[3] = './gallery/ch4.jpg'
Pic1[4] = './gallery/ch5.jpg'
Pic1[5] = './gallery/ch6.jpg'
Pic1[6] = './gallery/ch7.jpg'
Pic1[7] = './gallery/ch8.jpg'
Pic1[8] = './gallery/ch9.jpg'
Pic1[9] = './gallery/ch10.jpg'
Pic1[10] = './gallery/ch11.jpg'
Pic1[11] = './gallery/ch12.jpg'
Pic1[12] = './gallery/ch13.jpg'
Pic1[13] = './gallery/ch14.jpg'
Pic1[14] = './gallery/ch15.jpg'
Pic1[15] = './gallery/ch16.jpg'
Pic1[16] = './gallery/ch17.jpg'
Pic1[17] = './gallery/ch18.jpg'
Pic1[18] = './gallery/ch19.jpg'
Pic1[19] = './gallery/ch20.jpg'
Pic1[20] = './gallery/ch21.jpg'
Pic1[21] = './gallery/ch22.jpg'
Pic1[22] = './gallery/ch23.jpg'
Pic1[23] = './gallery/ch24.jpg'
Pic1[24] = './gallery/ch25.jpg'
Pic1[25] = './gallery/ch26.jpg'
Pic1[26] = './gallery/ch27.jpg'
Pic1[27] = './gallery/ch28.jpg'
Pic1[28] = './gallery/ch29.jpg'
Pic1[29] = './gallery/ch30.jpg'
Pic1[30] = './gallery/ch31.jpg'
Pic1[31] = './gallery/ch32.jpg'
Pic1[32] = './gallery/ch33.jpg'
Pic1[33] = './gallery/ch34.jpg'
Pic1[34] = './gallery/ch35.jpg'
Pic1[35] = './gallery/ch36.jpg'

// do not edit anything below this line
var t;
var j = 0;
var p = Pic1.length;
var preLoad1 = new Array();
for (i = 0; i < p; i++) {
preLoad1[i] = new Image();
preLoad1[i].src = Pic1[i];
}
function runSlideShow1() {
if (document.all) {
document.images.SlideShow1.style.filter="blendTrans(duration=2)";
document.images.SlideShow1.style.filter="blendTrans(duration=crossFadeDuration1)";
document.images.SlideShow1.filters.blendTrans.Apply();
}
document.images.SlideShow1.src = preLoad1[j].src;
if (document.all) {
document.images.SlideShow1.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow1()', slideShowSpeed1);
}

//  End -->

