<!-- 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 slideShowSpeed = 3000;
// Duration of crossfade (seconds)
var crossFadeDuration = 10;
// Specify the image files
var Pic = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = '../cimage11/105940img01.jpg'
Pic[1] = '../cimage11/105940img02.jpg'
Pic[2] = '../cimage11/105940img03.jpg'
Pic[3] = '../cimage11/105940img04.jpg'
Pic[4] = '../cimage11/105940img05.jpg'
Pic[5] = '../cimage11/105940img06.jpg'
Pic[6] = '../cimage11/105940img07.jpg'
Pic[7] = '../cimage11/105940img08.jpg'
Pic[8] = '../cimage11/105940img16.jpg'
Pic[9] = '../cimage11/105940img17.jpg'
Pic[10] = '../cimage11/105940img18.jpg'
Pic[11] = '../cimage11/105940img19.jpg'
Pic[12] = '../cimage11/105940img20.jpg'
Pic[13] = '../cimage11/105940img21.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="revealTrans(duration=2)";
document.images.SlideShow.style.filter="revealTrans(duration=2,transition=50)";
document.images.SlideShow.filters.revealTrans.Apply();
}
document.images.SlideShow.src = preLoad[j].src;
if (document.all) {
document.images.SlideShow.filters.revealTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}
// 