// JavaScript Document
var image_actuel = 0;
var images = new Array("photo23.jpg","photo2.jpg","photo3.jpg","photo10.jpg","photo11.jpg","photo13.jpg","photo14.jpg","photo15.jpg","photo18.jpg","photo20.jpg","photo21.jpg","photo24.jpg","photo25.jpg","photo26.jpg","photo28.jpg","photo30.jpg","photo32.jpg","photo33.jpg","photo35.jpg");
function suivant() {
	if (image_actuel == 18) {
		return false;
		//image_actuel = 35;
	}
	else {
		image_actuel = image_actuel + 1;
		// image_actuel++
	}
	document.getElementById("picture").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("picture").src = "images/diapo/"+images[image_actuel];
}


var image_actuela = 0;
var imagesa = new Array("photo4.jpg","photo8.jpg","photo9.jpg","photo12.jpg","photo16.jpg","photo34.jpg");
function suivanta() {
	if (image_actuela == 5) {
		return false;
		//image_actuel = 35;
	}
	else {
		image_actuela = image_actuela + 1;
		// image_actuel++
	}
	document.getElementById("picturea").src = "images/diapo/"+imagesa[image_actuela];
}
function precedenta() {
	if (image_actuela == 0) {
		image_actuela = 0;
	}
	else {
		image_actuela = image_actuela - 1;
		// image_actuel--
	}
	document.getElementById("picturea").src = "images/diapo/"+imagesa[image_actuela];
}

var image_actuelb = 0;
var imagesb = new Array("anape.jpg","photo1.jpg","photo5.jpg","photo7.jpg","photo27.jpg","photo31.jpg");
function suivantb() {
	if (image_actuelb == 4) {
		return false;
		//image_actuel = 35;
	}
	else {
		image_actuelb = image_actuelb + 1;
		// image_actuel++
	}
	document.getElementById("pictureb").src = "images/diapo2/"+imagesb[image_actuelb];
}
function precedentb() {
	if (image_actuelb == 0) {
		image_actuelb = 0;
	}
	else {
		image_actuelb = image_actuelb - 1;
		// image_actuel--
	}
	document.getElementById("pictureb").src = "images/diapo2/"+imagesb[image_actuelb];
}

var image_actuelc = 0;
var imagesc = new Array("jardin1.jpg","jardin2.jpg","jardin3.jpg","jardin4.jpg");
function suivantc() {
	if (image_actuelc == 3) {
		return false;
		//image_actuel = 35;
	}
	else {
		image_actuelc = image_actuelc + 1;
		// image_actuel++
	}
	document.getElementById("picturec").src = "images/diapo2/"+imagesc[image_actuelc];
}
function precedentc() {
	if (image_actuelc == 0) {
		image_actuelc = 0;
	}
	else {
		image_actuelc = image_actuelc - 1;
		// image_actuel--
	}
	document.getElementById("picturec").src = "images/diapo2/"+imagesc[image_actuelc];
}

function change(nom){
window.document.getElementById('soleil').src="images/bandeau/"+nom+".jpg";
}



