// Set fptop3Speed (milliseconds)
var fptop3Speed = 4000;
// Duration of crossfade (seconds)
var crossFadeDuration = 10;
// Specify the image files
var Thumb = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Thumb[0] = 'fpimages/IMGP5266sml.JPG'
Thumb[1] = 'fpimages/BBath125sml.jpg'
Thumb[2] = 'fpimages/IMGP4479sml.JPG'
Thumb[3] = 'fpimages/IMGP9358sml.JPG'
Thumb[4] = 'fpimages/IMGP8709smls.JPG'
Thumb[5] = 'fpimages/DSC04638smls.JPG'
Thumb[6] = 'fpimages/IMGP2265smls.JPG'
Thumb[7] = 'fpimages/IMGP1720smls.JPG'
Thumb[8] = 'fpimages/graceful262smls.jpg'
Thumb[9] = 'fpimages/IMGP4632smls.JPG'
Thumb[10] = 'fpimages/IMGP8597smls.JPG'
Thumb[11] = 'fpimages/DSC02182smls.JPG'
Thumb[12] = 'fpimages/DSC05109smls.JPG'
Thumb[13] = 'fpimages/DSC09088smls.JPG'
Thumb[14] = 'fpimages/DSC01775smls.JPG'

// do not edit anything below this line
var b;
var c = 0;
var d = Thumb.length;
var preLoads = new Array();
for (i = 0; i < d; i++) {
preLoads[i] = new Image();
preLoads[i].src = Thumb[i];
}
function runfptop3() {
if (document.all) {
document.images.fptop3.style.filter="blendTrans(duration=2)";
document.images.fptop3.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.fptop3.filters.blendTrans.Apply();
}
document.images.fptop3.src = preLoads[c].src;
if (document.all) {
document.images.fptop3.filters.blendTrans.Play();
}
c = c + 1;
if (c > (d - 1)) c = 0;
b = setTimeout('runfptop3()', fptop3Speed);
}
