// JavaScript Document





<!-- Begin

// Set slideShowSpeed (milliseconds)

var slideShowSpeed = 5000;

// Duration of crossfade (seconds)

var crossFadeDuration = 2;

// Specify the image files

var Picture = new Array();

// to add more images, just continue

// the pattern, adding to the array below



Picture[0] = 'header.jpg'
Picture[1] = 'header1.jpg'


// do not edit anything below this line

var u;

var o = 0;

var s = Picture.length;

var preLoad = new Array();

for (e = 0; e < s; e++) {

preLoad[e] = new Image();

preLoad[e].src = Picture[e];

}

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[o].src;

if (document.all) {

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

}

o = o + 1;

if (o > (s - 1)) o = 0;

u = setTimeout('runSlideShow()', slideShowSpeed);

}

//  End -->


