var image_actuel = 0;
var images = new Array("photo1.jpg","photo2.jpg","photo3.jpg","photo4.jpg","photo5.jpg","photo6.jpg","photo7.jpg","photo8.jpg","photo9.jpg","photo10.jpg","photo11.jpg","photo12.jpg");
function suivant() {
	if (image_actuel == 11) {
		return false;
		//image_actuel = 2;
	}
	else {
		image_actuel = image_actuel + 1;
		// image_actuel++
	}
	document.getElementById("photo").src = "images/diapo/"+images[image_actuel];
}
function precedent() {
	if (image_actuel == 0) {
		image_actuel = 0;
	}
	else {
		image_actuel = image_actuel - 1;
		// image_actuel--
	}
	document.getElementById("photo").src = "images/diapo/"+images[image_actuel];
}
