// JavaScript Document


//Script diaporama


var slideShowSpeed = 5000
var crossFadeDuration = 3
var repertoire = "images/";
var tab_img = new Array()

//Images stockées dans le tableau       
tab_img[0] = repertoire + 'presentation_artistes.jpg'
tab_img[1] = repertoire + 'Marie-Chantal Toupin.jpg'
tab_img[2] = repertoire + 'Rise Up.jpg'
tab_img[3] = repertoire + 'Les Mouches du Capitaine.jpg'
tab_img[4] = repertoire + 'Zone X.jpg'
tab_img[5] = repertoire + 'Dark Whiskey Band.jpg'
tab_img[6] = repertoire + 'Tumbleweed.jpg'

var t
var j = 0
var p = tab_img.length

var preLoad = new Array()

for (i = 0; i < p; i++)
{
	preLoad[i] = new Image()
	preLoad[i].src = tab_img[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)

}


