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

Picture[0] = 'fpimages/IMGP5264sml.JPG'
Picture[1] = 'fpimages/BBath081sml.jpg'
Picture[2] = 'fpimages/IMGP4473sml.JPG'
Picture[3] = 'fpimages/IMGP9355sml.JPG'
Picture[4] = 'fpimages/IMGP8689smls.JPG'
Picture[5] = 'fpimages/DSC04628smls.JPG'
Picture[6] = 'fpimages/IMGP2260smls.JPG'
Picture[7] = 'fpimages/IMGP1652smls.JPG'
Picture[8] = 'fpimages/graceful248smls.jpg'
Picture[9] = 'fpimages/IMGP4612smls.JPG'
Picture[10] = 'fpimages/IMGP8595smls.JPG'
Picture[11] = 'fpimages/DSC02134smls.JPG'
Picture[12] = 'fpimages/DSC04993smls.JPG'
Picture[13] = 'fpimages/DSC09022smls.JPG'
Picture[14] = 'fpimages/DSC01752smls.JPG'

// do not edit anything below this line
var q;
var z = 0;
var h = Picture.length;
var preLoader = new Array();
for (i = 0; i < h; i++) {
preLoader[i] = new Image();
preLoader[i].src = Picture[i];
}
function runfptop1() {
if (document.all) {
document.images.fptop1.style.filter="blendTrans(duration=2)";
document.images.fptop1.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.fptop1.filters.blendTrans.Apply();
}
document.images.fptop1.src = preLoader[z].src;
if (document.all) {
document.images.fptop1.filters.blendTrans.Play();
}
z = z + 1;
if (z > (h - 1)) z = 0;
q = setTimeout('runfptop1()', fptop1Speed);
}
