

imgFran = new Array("fotos/fotocomedor/foto1.jpg",

"fotos/fotocomedor/foto2.jpg","fotos/fotocomedor/foto3.jpg",

"fotos/fotocomedor/foto4.jpg","fotos/fotocomedor/foto5.jpg","fotos/fotocomedor/foto6.jpg")



	

		

	thisPic = 0

	imgCt = 5

function Anterior() {

		if ( thisPic > 0) {

			thisPic--

			document.foto.src=imgFran[thisPic];

			flechad.style.visibility = "visible";



			}

		if (thisPic == 0) {

			flechai.style.visibility = "hidden";

			flechad.style.visibility = "visible"}



	}



	function Siguiente() {

thisPic++

		if ( thisPic < imgCt) {

			document.foto.src=imgFran[thisPic];

			flechai.style.visibility = "visible";

			 }

		if (thisPic == 5) {					/*nš de fotos menos uno*/

			document.foto.src=imgFran[thisPic];

			flechad.style.visibility = "hidden";}

			}



	