var photos=new Array()
var which=0

photos[0]="./diaporama/lavoir10.jpg"
photos[1]="./diaporama/pressoir2.jpg"
photos[2]="./diaporama/pressoir3.jpg"
photos[3]="./diaporama/pressoir6.jpg"
photos[4]="./diaporama/romane4.jpg"
photos[5]="./diaporama/romane2.jpg"
photos[6]="./diaporama/table_hotes1.jpg"
photos[7]="./diaporama/table_hotes2.jpg"
photos[8]="./diaporama/massage2.jpg"
photos[9]="./diaporama/tulipes2.jpg"
photos[10]="./diaporama/tulipes3.jpg"
photos[11]="./diaporama/tulipes9.jpg"
photos[12]="./diaporama/spa.jpg"
photos[13]="./diaporama/fitness2.jpg"
photos[14]="./diaporama/hammam.jpg"
photos[15]="./diaporama/diapo1.jpg"
photos[16]="./diaporama/diapo2.jpg"

var preloadedimages=new Array()
for (i=0;i<photos.length;i++) {
	preloadedimages[i]=new Image()
	preloadedimages[i].src=photos[i]
}


function applyeffect() {
	if (document.all && document.getElementById("photoslider").filters) {
		document.getElementById("photoslider").filters.revealTrans.Transition=Math.floor(Math.random()*23)
		document.getElementById("photoslider").filters.revealTrans.stop()
		document.getElementById("photoslider").filters.revealTrans.apply()
	}
}

function playeffect() {
	document.getElementById("photoslider").filters.revealTrans.play();
}

function demarrerAnimation() {
	document.write('<img src="./diaporama/pressoir1.jpg" width="150" height="100" alt="Aperçus photos" border="0" name="photoslider"  id="photoslider" style="filter:revealTrans(duration=2,transition=23)" border="0" />');
	animation();
}

function animation() {
	//alert(photoslider.src);
	applyeffect();
	document.getElementById("photoslider").src=photos[which];
	playeffect();
	//alert(photoslider.src);
	which++;
	if (which>=17) {
		which=0;
	}
	//tempo3 = setTimeout("animation()",5000);
	setTimeout("animation()",7000);

}

function agrandissement_photo(nom_photo,largeur,hauteur) {
	document.photo_principale.src = "./img/" + nom_photo + ".jpg";
	document.photo_principale.width=largeur;
	document.photo_principale.height=hauteur;
}
