// JavaScript Document

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 > (end1-1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}


// do not edit anything below this line

function runSlideShow2() {
if (document.all) {
document.images.SlideShow2.style.filter="blendTrans(duration=2)";
document.images.SlideShow2.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow2.filters.blendTrans.Apply();
}
document.images.SlideShow2.src = preLoad[k].src;
if (document.all) {
document.images.SlideShow2.filters.blendTrans.Play();
}
k = k + 1;
if (k > (end2 - 1)) k = 3;
t2 = setTimeout('runSlideShow2()', slideShowSpeed);
}