<!-- 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] = '../cimage7/104847img1.jpg'
Pic[1] = '../cimage7/104847img2.jpg'
Pic[2] = '../cimage7/104847img3.jpg'
Pic[3] = '../cimage7/104847img4.jpg'
Pic[4] = '../cimage7/104847img5.jpg'
Pic[5] = '../cimage7/104847img6.jpg'
Pic[6] = '../cimage7/104847img7.jpg'
Pic[7] = '../cimage7/104847img8.jpg'
Pic[8] = '../cimage7/104847img9.jpg'
Pic[9] = '../cimage7/104847img10.jpg'
Pic[10] = '../cimage7/104847img11.jpg'
Pic[11] = '../cimage7/104847img12.jpg'
Pic[12] = '../cimage7/104847img13.jpg'
Pic[13] = '../cimage7/104847img14.jpg'
Pic[14] = '../cimage7/104847img15.jpg'
Pic[15] = '../cimage7/104847img16.jpg'
Pic[16] = '../cimage7/104847img17.jpg'
Pic[17] = '../cimage7/104847img18.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);
}
// 