// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 4000;
// Duration of crossfade (seconds)
var crossFadeDuration = 4;
// Specify the image files
var Pic = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = '../fotos/g702h.jpg'
Pic[1] = '../fotos/obj102h.jpg'
Pic[2] = '../fotos/edb104h.jpg'
Pic[3] = '../fotos/rai115h.jpg'
Pic[4] = '../fotos/gg828h.jpg'
Pic[5] = '../fotos/gg513h.jpg'
Pic[6] = '../fotos/pas159h.jpg'
Pic[7] = '../fotos/ppl327h.jpg'
Pic[8] = '../fotos/g588h.jpg'

// do not edit anything below this line
var t;
var j = 0;
var p = Pic.length;
var preLoad = new Array();
for (i = 0; i < p; i++) 
{
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
}
function runSlideShow() {
if (document.all) {
document.images.SlideShow.style.filter="blendTrans(duration=2)";
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow.filters.blendTrans.Apply();
}
document.images.SlideShow.src = preLoad[j].src;
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}
//  End -->

