// Définir la vitesse (milliseconds)
var slideShowSpeed2 = 1550

// Temps du fondu (seconds)
var crossFadeDuration2 = 2

// Indiquer les fichiers images
var Pic2 = new Array() // don't touch this


Pic2[0] = 'defile/2.jpg'
Pic2[1] = 'defile/1.jpg'
Pic2[2] = 'defile/6.jpg'
Pic2[3] = 'defile/4.jpg'
Pic2[4] = 'defile/5.jpg'
//Pic2[5] = 'defile/5.jpg'
//Pic[3] = '4.jpg'
//Pic[1] = '/images/partenaires/fournier.gif'


// =======================================
// Ne rien éditer au-dessous de cette ligne
// =======================================

var t2
var j2 = 0
var p2 = Pic.length

var preLoad = new Array()
for (i = 0; i < p; i++){
preLoad[i] = new Image()
preLoad[i].src = Pic2[i]
}

function runSlideShow2(){
if (document.all){
document.images.SlideShow2.style.filter="blendTrans(duration=2)"
document.images.SlideShow2.style.filter="blendTrans(duration=crossFadeDuration2)"
document.images.SlideShow2.filters.blendTrans.Apply() 
}
document.images.SlideShow2.src = preLoad[j].src
if (document.all){
document.images.SlideShow2.filters.blendTrans.Play()
}
j = j + 1
if (j > (p-1)) j=0
t = setTimeout('runSlideShow2()', slideShowSpeed2)
}


