// JavaScript Document





<!-- Begin

// Set slideShowSpeed (milliseconds)

var slideShow2Speed = 4000;

// Duration of crossfade (seconds)

var crossFadeDuration2 = 2;

// Specify the image files

var Picture2 = new Array();

// to add more images, just continue

// the pattern, adding to the array below



Picture2[0] = '../../../images/img_top_6a.jpg'
Picture2[1] = '../../../images/img_top_6b.jpg'

// do not edit anything below this line

var v;

var p = 0;

var t = Picture2.length;

var preLoad = new Array();

for (f = 0; f < t; f++) {

preLoad[f] = new Image();

preLoad[f].src = Picture2[f];

}

function runSlideShow2() {

if (document.all) {

document.images.SlideShow2.style.filter="blendTrans(duration=2)";

document.images.SlideShow2.style.filter="blendTrans(duration=crossFadeDuration2)";

document.images.SlideShow2.filters.blendTrans.Apply();

}

document.images.SlideShow2.src = preLoad[p].src;

if (document.all) {

document.images.SlideShow2.filters.blendTrans.Play();

}

p = p + 1;

if (p > (t - 1)) p = 0;

v = setTimeout('runSlideShow2()', slideShow2Speed);

}

//  End -->

