var slideShowSpeed3 = 4000;
// Duration of crossfade (seconds)
var crossFadeDuration3 = 6;
// Specify the image files
var Pic3 = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic3[0] = 'images/search.jpg'
Pic3[1] = 'images/search2.jpg';



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

