<!----------1---------slideshow-start-end----------1---------->
// Set slideShowSpeed (milliseconds)
var slideShowSpeed1 = 6200;
// Duration of crossfade (seconds)
var crossFadeDuration1 = 3;
// Specify the image files
var Pic1 = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic1[0] = 'images/photo1a.jpg'
Pic1[1] = 'images/photo1b.jpg'


// do not edit anything below this line
var t1;
var j1 = 0;
var p1 = Pic1.length;
var preLoad1 = new Array();
for (i1 = 0; i1 < p1; i1++) {
preLoad1[i1] = new Image();
preLoad1[i1].src = Pic1[i1];
}
function runSlideShow1() {
if (document.all) {
document.images.SlideShow1.style.filter="blendTrans(duration=2)";
document.images.SlideShow1.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow1.filters.blendTrans.Apply();
}
document.images.SlideShow1.src = preLoad1[j1].src;
if (document.all) {
document.images.SlideShow1.filters.blendTrans.Play();
}
j1 = j1 + 1;
if (j1 > (p1 - 1)) j1 = 0;
t1 = setTimeout('runSlideShow1()', slideShowSpeed1);
}
<!----------2---------slideshow-start-end----------2---------->
// Set slideShowSpeed (milliseconds)
var slideShowSpeed2 = 4200;
// Duration of crossfade (seconds)
var crossFadeDuration2 = 3;
// Specify the image files
var Pic2 = new Array();
// to add more images, just continue
// the pattern, adding to the array below


Pic2[0] = 'images/photo2a.jpg'
Pic2[1] = 'images/photo2b.jpg'
Pic2[2] = 'images/photo2c.jpg'
Pic2[3] = 'images/photo2d.jpg'
Pic2[4] = 'images/photo2e.jpg'
Pic2[5] = 'images/photo2f.jpg'
Pic2[6] = 'images/photo2g.jpg'


// do not edit anything below this line
var t2;
var j2 = 0;
var p2 = Pic2.length;
var preLoad2 = new Array();
for (i2 = 0; i2 < p2; i2++) {
preLoad2[i2] = new Image();
preLoad2[i2].src = Pic2[i2];
}
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 = preLoad2[j2].src;
if (document.all) {
document.images.SlideShow2.filters.blendTrans.Play();
}
j2 = j2 + 1;
if (j2 > (p2 - 1)) j2 = 0;
t2 = setTimeout('runSlideShow2()', slideShowSpeed2);
}
<!----------3---------slideshow-start-end----------3---------->
// Set slideShowSpeed (milliseconds)
var slideShowSpeed3 = 5200;
// Duration of crossfade (seconds)
var crossFadeDuration3 = 3;
// Specify the image files
var Pic3 = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic3[0] = 'images/photo3a.jpg'
Pic3[1] = 'images/photo3b.jpg'


// do not edit anything below this line
var t3;
var j3 = 0;
var p3 = Pic3.length;
var preLoad3 = new Array();
for (i3 = 0; i3 < p3; i3++) {
preLoad3[i3] = new Image();
preLoad3[i3].src = Pic3[i3];
}
function runSlideShow3() {
if (document.all) {
document.images.SlideShow3.style.filter="blendTrans(duration=2)";
document.images.SlideShow3.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow3.filters.blendTrans.Apply();
}
document.images.SlideShow3.src = preLoad3[j3].src;
if (document.all) {
document.images.SlideShow3.filters.blendTrans.Play();
}
j3 = j3 + 1;
if (j3 > (p3 - 1)) j3 = 0;
t3 = setTimeout('runSlideShow3()', slideShowSpeed3);
}
//  End 
