function str_replace(a, b, str) {
return str_replace2(str, a, b);
}
function str_replace2(SRs, SRt, SRu) {
SRRi = SRs.indexOf(SRt);
SRRr = '';
if (SRRi == -1) return SRs;
SRRr += SRs.substring(0,SRRi) + SRu;
if ( SRRi + SRt.length < SRs.length)
SRRr += str_replace2(SRs.substring(SRRi + SRt.length, SRs.length), SRt, SRu);
return SRRr;
}
function renommage(quoi)
{
quoi = str_replace("(Custom)","",quoi);
quoi = str_replace("Mini/","",quoi);
return quoi;
}
var slideShowSpeed = 5000
var crossFadeDuration = 3
var Pic = new Array()
Pic[0] = renommage('Photos/Grandes/Camping_ETE/Mini//S6000348(Custom).JPG');
	Pic[1] = renommage('Photos/Grandes/Camping_ETE/Mini//S6000349(Custom).JPG');
	Pic[2] = renommage('Photos/Grandes/Camping_ETE/Mini//S6000350(Custom).JPG');
	Pic[3] = renommage('Photos/Grandes/Camping_ETE/Mini//S6000359(Custom).JPG');
	Pic[4] = renommage('Photos/Grandes/Camping_ETE/Mini//S6000362(Custom).JPG');
	Pic[5] = renommage('Photos/Grandes/Camping_ETE/Mini//S6000363(Custom).JPG');
	Pic[6] = renommage('Photos/Grandes/Camping_ETE/Mini//S6000364(Custom).JPG');
	Pic[7] = renommage('Photos/Grandes/Camping_ETE/Mini//S6000365(Custom).JPG');
	Pic[8] = renommage('Photos/Grandes/Camping_ETE/Mini//S6000366(Custom).JPG');
	Pic[9] = renommage('Photos/Grandes/Camping_ETE/Mini//S6000386(Custom).JPG');
	Pic[10] = renommage('Photos/Grandes/Camping_ETE/Mini//S6000387(Custom).JPG');
	Pic[11] = renommage('Photos/Grandes/Camping_ETE/Mini//S6000391(Custom).JPG');
	Pic[12] = renommage('Photos/Grandes/Camping_ETE/Mini//S6000392(Custom).JPG');
	Pic[13] = renommage('Photos/Grandes/Camping_ETE/Mini//S6000393(Custom).JPG');
	Pic[14] = renommage('Photos/Grandes/Camping_ETE/Mini//S6000394(Custom).JPG');
	Pic[15] = renommage('Photos/Grandes/Camping_ETE/Mini//S6000396(Custom).JPG');
	Pic[16] = renommage('Photos/Grandes/Camping_ETE/Mini//S6000397(Custom).JPG');
	Pic[17] = renommage('Photos/Grandes/Camping_ETE/Mini//S6000398(Custom).JPG');
	Pic[18] = renommage('Photos/Grandes/Camping_ETE/Mini//S6000399(Custom).JPG');
	Pic[19] = renommage('Photos/Grandes/Camping_ETE/Mini//S6000400(Custom).JPG');
	Pic[20] = renommage('Photos/Grandes/Camping_ETE/Mini//S6000401(Custom).JPG');
	Pic[21] = renommage('Photos/Grandes/Camping_ETE/Mini//S6000404(Custom).JPG');
	Pic[22] = renommage('Photos/Grandes/Camping_ETE/Mini//S6000405(Custom).JPG');
	Pic[23] = renommage('Photos/Grandes/Camping_ETE/Mini//S6000408(Custom).JPG');
	Pic[24] = renommage('Photos/Grandes/Camping_ETE/Mini//S6000409(Custom).JPG');
	Pic[25] = renommage('Photos/Grandes/Camping_ETE/Mini//S6000413(Custom).JPG');
	Pic[26] = renommage('Photos/Grandes/Camping_ETE/Mini//S6000414(Custom).JPG');
	Pic[27] = renommage('Photos/Grandes/Camping_ETE/Mini//S6000415(Custom).JPG');
	Pic[28] = renommage('Photos/Grandes/Camping_ETE/Mini//S6000434(Custom).JPG');
	Pic[29] = renommage('Photos/Grandes/Camping_ETE/Mini//S6000435(Custom).JPG');
	Pic[30] = renommage('Photos/Grandes/Camping_ETE/Mini//S6000496(Custom).JPG');
	Pic[31] = renommage('Photos/Grandes/Camping_ETE/Mini//def(Custom).JPG');
	 

// =======================================
// Ne rien éditer au-dessous de cette ligne
// =======================================

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)
}
