// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 3000;
// Duration of crossfade (seconds)
var crossFadeDuration = 2;
// Specify the image files
var Pic = new Array();
var Pict = new Array();
var Picture = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pict[0] = 'images/f1.jpg';
Pict[1] = 'images/f2.jpg';
Pict[2] = 'images/f3.jpg';
Pict[3] = 'images/f4.jpg';
Pict[4] = 'images/f5.jpg';
Pict[5] = 'images/f6.jpg';
Pict[6] = 'images/f7.jpg';
Pict[7] = 'images/f8.jpg';
Pict[8] = 'images/f9.jpg';
Pict[9] = 'images/f10.jpg';
Pict[10] = 'images/f11.jpg';

// do not edit anything below this line
var t;
var j = 0,k=0;
var p = Pic.length;
var q = Pict.length;
var r = Picture.length;

var preLoad = new Array();
var preLoad2 = new Array();
var preLoad3 = new Array();

for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
}

for (i = 0; i < q; i++) {
preLoad2[i] = new Image();
preLoad2[i].src = Pict[i];
}

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 = preLoad2[j].src;

if (document.all) {

document.images.SlideShow3.filters.blendTrans.Play();
}
j = j + 1;
if (j > (q - 1))j = 0;
{
}
t = setTimeout('runSlideShow3()', slideShowSpeed);
}
//  End -->

