FotoArray = new Array ();
TextArray = new Array ();
FotoIniziale = 0;  //foto di inizio
MaxFoto = 56;      //numero max delle foto

    FotoArray[0]= "img/galleria09/01.jpg";
    FotoArray[1]= "img/galleria09/02.jpg";
    FotoArray[2]= "img/galleria09/03.jpg";
    FotoArray[3]= "img/galleria09/04.jpg";
    FotoArray[4]= "img/galleria09/05.jpg";
    FotoArray[5]= "img/galleria09/06.jpg";
    FotoArray[6]= "img/galleria09/07.jpg";
    FotoArray[7]= "img/galleria09/08.jpg";
    FotoArray[8]= "img/galleria09/09.jpg";
    FotoArray[9]= "img/galleria09/10.jpg";
    FotoArray[10]= "img/galleria09/11.jpg";
    FotoArray[11]= "img/galleria09/12.jpg";
    FotoArray[12]= "img/galleria09/13.jpg";
    FotoArray[13]= "img/galleria09/14.jpg";
    FotoArray[14]= "img/galleria09/15.jpg";
    FotoArray[15]= "img/galleria09/16.jpg";
    FotoArray[16]= "img/galleria09/17.jpg";
    FotoArray[17]= "img/galleria09/18.jpg";
    FotoArray[18]= "img/galleria09/19.jpg";
    FotoArray[19]= "img/galleria09/20.jpg";
    FotoArray[20]= "img/galleria09/21.jpg";
    FotoArray[21]= "img/galleria09/22.jpg";
    FotoArray[22]= "img/galleria09/23.jpg";
    FotoArray[23]= "img/galleria09/24.jpg";
    FotoArray[24]= "img/galleria09/25.jpg";
    FotoArray[25]= "img/galleria09/26.jpg";
	FotoArray[26]= "img/galleria09/27.jpg";
    FotoArray[27]= "img/galleria09/28.jpg";
	FotoArray[28]= "img/galleria09/29.jpg";
    FotoArray[29]= "img/galleria09/30.jpg";
	FotoArray[30]= "img/galleria09/31.jpg";
    FotoArray[31]= "img/galleria09/32.jpg";
	FotoArray[32]= "img/galleria09/33.jpg";
	FotoArray[33]= "img/galleria09/34.jpg";
	FotoArray[34]= "img/galleria09/35.jpg";
    FotoArray[35]= "img/galleria09/36.jpg";	
	FotoArray[36]= "img/galleria09/37.jpg";	
	FotoArray[37]= "img/galleria09/38.jpg";	
	FotoArray[38]= "img/galleria09/39.jpg";
	FotoArray[39]= "img/galleria09/40.jpg";	
	FotoArray[40]= "img/galleria09/41.jpg";	
	FotoArray[41]= "img/galleria09/42.jpg";	
	FotoArray[42]= "img/galleria09/43.jpg";	
	FotoArray[43]= "img/galleria09/44.jpg";	
	FotoArray[44]= "img/galleria09/45.jpg";	
	FotoArray[45]= "img/galleria09/46.jpg";	
	FotoArray[46]= "img/galleria09/47.jpg";	
	FotoArray[47]= "img/galleria09/48.jpg";	
	FotoArray[48]= "img/galleria09/49.jpg";	
	FotoArray[49]= "img/galleria09/50.jpg";	
	FotoArray[50]= "img/galleria09/51.jpg";	
	FotoArray[51]= "img/galleria09/52.jpg";	
	FotoArray[52]= "img/galleria09/53.jpg";	
	FotoArray[53]= "img/galleria09/54.jpg";	
	FotoArray[54]= "img/galleria09/55.jpg";	
	FotoArray[55]= "img/galleria09/56.jpg";	

	function NextFoto()
	{
		if (FotoIniziale == MaxFoto){
			FotoIniziale = 1;
		} else {
			FotoIniziale++;
		}
		document.showFoto.src = FotoArray[FotoIniziale-1];
	}

	function PrevFoto()
	{    
		if (FotoIniziale == 1){
			FotoIniziale = MaxFoto;  
		} else {
			if (FotoIniziale == 0){
				FotoIniziale = MaxFoto;
			} else {
		FotoIniziale--;
			}
		}
		document.showFoto.src = FotoArray[FotoIniziale-1];
	}