// Set slideShow3Speed (milliseconds)
var slideShow3Speed = 3400;
// Duration of crossfade (seconds)
var crossFadeDuration = 2;
// Specify the image files
var Pic3 = new Array();
Pic3[0] = 'photos/slideshow3/robertson_avant.jpg'
Pic3[1] = 'photos/slideshow3/robertson_apres.jpg'

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=3)";
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()', slideShow3Speed);
}

