tabPhoto = new Array(21);

	tabPhoto[0] = "contenu/images/grappe.jpg";
	tabPhoto[1] = "contenu/images/vigne.jpg";
	tabPhoto[2] = "contenu/images/sejour.jpg";
	tabPhoto[3] = "contenu/images/salon.jpg";
	tabPhoto[4] = "contenu/images/cuisine.jpg";
	tabPhoto[5] = "contenu/images/chambre-double.jpg";
	tabPhoto[6] = "contenu/images/chambre-double-lit.jpg";
	tabPhoto[7] = "contenu/images/barque.jpg";
	
	
tabTitre = new Array(21);
	tabTitre[0] = "Une grappe de raisin a maturation";
	tabTitre[1] = "Le coteau sous la neige";
	tabTitre[2] = "Le sejour";
	tabTitre[3] = "Le salon et la cheminee";
	tabTitre[4] = "La cuisine";
	tabTitre[5] = "La chambre double";
	tabTitre[6] = "La chambre avec deux lits";
	tabTitre[7] = "Barques de loire";
	
function changePhoto(i) {
	document.images['imageAffichage'].src = tabPhoto[i];
	document.images['imageAffichage'].title = tabTitre[i];
	document.getElementById("titreAffichage").firstChild.nodeValue = tabTitre[i];
}

