// javascipt

function GestoreGallery()
{
	this.gallery_array = new Array()
	this.aggiungiGallery = function(gallery_obj)
	{
		this.gallery_array.push(gallery_obj)
		gallery_obj.id = this.gallery_array.length;
		gallery_obj.parent = this;
	}

	this.disegnaIntestazione = function(identificatore)
	{

		if (typeof(identificatore)=="undefined")
		{
			out_html = '<table width="100%"  onMouseOver="this.style.cursor=\'hand\'" border="0" cellspacing="0" cellpadding="0"><tr><td><img src="../../img/spessore.gif" width="10" height="10" hspace="0" vspace="0"></td></tr><tr>\n\n';
			for (var i = 0; i<this.gallery_array.length; i++)
			{
				out_html += '<td onClick="galleryCatOver(this,\''+ this.gallery_array[i].identificatore +'\')" onMouseOut="galleryCatOut(this,1)" id="tab_'+this.gallery_array[i].identificatore+'"><table width="100%"  border="0" cellspacing="3" cellpadding="3"><tr><td align="center" nowrap class="categorieGallery">'+this.gallery_array[i].nome+'</td></tr></table></td>\n\n';
			} 
			out_html += '</tr></table>';
			return out_html;			
		}
		else
		{
			gallery_obj = null;
			out_html = '<table  border="0" cellspacing="0" cellpadding="0"><tr><td><img src="../../img/spessore.gif" width="10" height="10" hspace="0" vspace="0"></td></tr><tr>\n\n';			
			for (var i = 0; i<this.gallery_array.length; i++)
			{
				if (this.gallery_array[i].identificatore == identificatore)
				{
					gallery_obj = this.gallery_array[i];
					break
				}
			} 
			out_html += '<td onClick="galleryCatOver(this,\''+ gallery_obj.identificatore +'\')" onMouseOut="galleryCatOut(this,1)" id="tab_'+this.gallery_array[i].identificatore+'"><table width="100%"  border="0" cellspacing="3" cellpadding="3"><tr><td align="center" nowrap class="categorieGallery">'+this.gallery_array[i].nome+'</td></tr></table></td>\n\n';
			out_html += '</tr></table>';
			return out_html;
		}
		
	}

	this.disegnaTabella = function()
	{
		out_html ="";
		for (var i = 0; i<this.gallery_array.length;i++)
		{
			div_html ="";
			immagini_array = this.gallery_array[i].immagini_array;
			out_html += '<div id="gallery_'+this.gallery_array[i].identificatore+'" style="width:865px; height:85px; overflow:auto; text-align:center; visibility:hidden; position:absolute">';
			div_html += '<table  border="0" align="left" cellpadding="2" cellspacing="3"><tr>';			
			for (var k = 0 ;k<immagini_array.length;k++)
			{
				imm_obj = immagini_array[k];
				div_html += '<td><a href="#" onClick="zoomGallery(\'../../' + this.gallery_array[i].base_url  + imm_obj.hig_res + '\');return false;"><img src="../../'+this.gallery_array[i].base_url + '/' + imm_obj.low_res +'" border="0" class="fotinaGallery"></a></td>';
			}
			div_html += '</tr></table>';
			out_html += '</div>';
			this.gallery_array[i].div_html = div_html;
			this.gallery_array[i].div_name = "gallery_" + this.gallery_array[i].identificatore;
		} 
		return out_html;
	}
	
	this.getGalleryByDivNane = function(div_name)
	{
		gallery_obj = null;
		for (var i = 0; i<this.gallery_array.length;i++)
		{
			if (this.gallery_array[i].div_name == div_name)
			{
				gallery_obj = this.gallery_array[i];
				break;
			}
		}
		return gallery_obj;
	}
}


function Gallery(nome, identificatore, base_url, descrizione)
{
	this.nome = nome;
	this.identificatore = identificatore;
	this.descrizione = descrizione;
	this.base_url = base_url;

	this.immagini_array = new Array();
	this.aggiungiImmagine = function(immagine_object)
	{
		this.immagini_array.push(immagine_object)
		immagine_object.id = this.immagini_array.length;
		immagine_object.parent = this;
	}
}

function Immagine (low_res,hig_res,descrizione)
{
	this.low_res = low_res;
	this.hig_res = hig_res;
	this.descrizione = descrizione;
}

function zoomGallery(src)
{
	//alert(src);
	destURL ="zoomgallery.php?immagine="+src
	zoom_win  = window.open(destURL,"zoomWin", "width=50; height=50, status=yes, resizable=yes");
}


function galleryCatOver(obj,div_name)
{
	showCategory(div_name)
}

function galleryCatOut(obj)
{

}

function galleryCatClick(obj, div_name)
{

}

function showCategory(div_name)
{ 	

	gallery_obj = gestore_gallery.getGalleryByDivNane("gallery_" + div_name);
	document.getElementById("gallery_" + div_name).innerHTML = gallery_obj.div_html;	

	if (typeof(old_div_gallery)!="undefined")
	{
		old_div_gallery.style.visibility = "hidden";
		old_div_gallery.style.position = "absolute"
	}

	div_gallery = document.getElementById("gallery_" + div_name);
	
	div_gallery.style.visibility = "visible";
	div_gallery.style.position   = "relative";
	
	old_div_gallery = div_gallery;



	tab_gallery = document.getElementById("tab_" + div_name);
	tab_gallery.style.backgroundColor="#E6EFF6";
	tab_gallery.style.cursor = "hand";

	
	if (typeof(old_tab)!="undefined")
	{
		if (old_tab != tab_gallery)
		{
			old_tab.style.backgroundColor="#FFFFFF";		
		}
	}
	
	old_tab = tab_gallery;
}

/*********************************************************************************************************/

gestore_gallery = new GestoreGallery();

// la flotta
gallery = new Gallery("La Flotta","la_flotta", "img/gallery/la_flotta/");
gallery.aggiungiImmagine(new Immagine("albatros.jpg", "albatros_b.jpg"));
gallery.aggiungiImmagine(new Immagine("beluo-3.jpg", "beluo-3_b.jpg"));
//gallery.aggiungiImmagine(new Immagine("cormorano2.jpg", "cormorano2_b.jpg"));
gallery.aggiungiImmagine(new Immagine("DSCN1083.jpg", "DSCN1083_b.jpg"));
gallery.aggiungiImmagine(new Immagine("fenice-2.jpg", "fenice-2_b.jpg"));
gallery.aggiungiImmagine(new Immagine("lem.jpg", "lem_b.jpg"));
gallery.aggiungiImmagine(new Immagine("euro4.jpg", "euro4_b.jpg"));
gallery.aggiungiImmagine(new Immagine("mn-golfo-dei-poeti.jpg", "mn-golfo-dei-poeti_b.jpg"));
gallery.aggiungiImmagine(new Immagine("nuovo-121.jpg", "nuovo-121_b.jpg"));
gallery.aggiungiImmagine(new Immagine("ufo-3_1.jpg", "ufo-3_1_b.jpg"));
gallery.aggiungiImmagine(new Immagine("ufo-4.jpg", "ufo-4_b.jpg"));
gallery.aggiungiImmagine(new Immagine("pae-veciu.jpg", "pae-veciu_b.jpg"));
gallery.aggiungiImmagine(new Immagine("DSCN1094.jpg", "DSCN1094_b.jpg"));




gestore_gallery.aggiungiGallery(gallery);

// la spezia
gallery = new Gallery("La Spezia", "la_spezia", "img/gallery/la_spezia/");
gallery.aggiungiImmagine(new Immagine("la__spezia_passeggiata_morin_b_b.jpg", "la__spezia_passeggiata_morin_b.jpg"));
gallery.aggiungiImmagine(new Immagine("la_spezia_b_b.jpg", "la_spezia_b.jpg"));
gallery.aggiungiImmagine(new Immagine("la_spezia_panoramica_2_b_b.jpg", "la_spezia_panoramica_2_b.jpg"));
//gallery.aggiungiImmagine(new Immagine("la_spezia_panoramica_b_b.jpg", "la_spezia_panoramica_b.jpg"));
gallery.aggiungiImmagine(new Immagine("la_spezia_passeggiata_morin_b_b.jpg", "la_spezia_passeggiata_morin_b.jpg"));
gallery.aggiungiImmagine(new Immagine("La_spezia_Via_prione_b_b.jpg", "La_spezia_Via_prione_b.jpg"));


/*gallery.aggiungiImmagine(new Immagine("nuovo-10_b_b.jpg", "nuovo-10_b.jpg"));
gallery.aggiungiImmagine(new Immagine("P8201170_b_b.jpg", "P8201170_b.jpg"));
gallery.aggiungiImmagine(new Immagine("panoramica 2_b_b.jpg", "panoramica 2_b.jpg"));
gallery.aggiungiImmagine(new Immagine("passeggiata morin_b_b.jpg", "passeggiata morin_b.jpg"));
*/

gestore_gallery.aggiungiGallery(gallery);

// bocca di magra
gallery = new Gallery("Bocca di Magra", "bocca_di_magra", "img/gallery/bocca_di_magra/");
gallery.aggiungiImmagine(new Immagine("bocca di magra_b_b.jpg", "bocca di magra_b.jpg"));
gallery.aggiungiImmagine(new Immagine("nuovo-24_b_b.jpg", "nuovo-24_b.jpg"));

gestore_gallery.aggiungiGallery(gallery);

// portovenere
gallery = new Gallery("Portovenere", "portovenere", "img/gallery/portovenere/");
gallery.aggiungiImmagine(new Immagine("portoveenre_palazzata_b_b.jpg", "portoveenre_palazzata_b.jpg"));
gallery.aggiungiImmagine(new Immagine("portoveenre_panoramica 2_b_b.jpg", "portoveenre_panoramica 2_b.jpg"));
//gallery.aggiungiImmagine(new Immagine("portovenere_cartina_b_b.jpg", "portovenere_cartina_b.jpg"));
//gallery.aggiungiImmagine(new Immagine("portovenere_cartina_inglese_b_b.jpg", "portovenere_cartina_inglese_b.jpg"));
gallery.aggiungiImmagine(new Immagine("portovenere_chiesa_s_lorenzo_b_b.jpg", "portovenere_chiesa_s_lorenzo_b.jpg"));
gallery.aggiungiImmagine(new Immagine("portovenere_da_palmaria_b_b.jpg", "portovenere_da_palmaria_b.jpg"));
gallery.aggiungiImmagine(new Immagine("portovenere_madonna_bianca_2_b_b.jpg", "portovenere_madonna_bianca_2_b.jpg"));
gallery.aggiungiImmagine(new Immagine("Portovenere_paese_b_b.jpg", "Portovenere_paese_b.jpg"));
gallery.aggiungiImmagine(new Immagine("Portovenere_panoramica_b_b.jpg", "Portovenere_panoramica_b.jpg"));
gallery.aggiungiImmagine(new Immagine("portovenere_s_pietro_2_b_b.jpg", "portovenere_s_pietro_2_b.jpg"));
gallery.aggiungiImmagine(new Immagine("portovenere_s_pietro_b_b.jpg", "portovenere_s_pietro_b.jpg"));
gallery.aggiungiImmagine(new Immagine("portovenere_s_pietro_da_palmaria_b_b.jpg", "portovenere_s_pietro_da_palmaria_b.jpg"));
gallery.aggiungiImmagine(new Immagine("portovenere_veduta_da_s_pietro_b_b.jpg", "portovenere_veduta_da_s_pietro_b.jpg"));

/*
gallery.aggiungiImmagine(new Immagine("castello_e_san_pietro_b_b.jpg", "castello_e_san_pietro_b.jpg"));
gallery.aggiungiImmagine(new Immagine("castello_san_pietro_b_b.jpg", "castello_san_pietro_b.jpg"));
gallery.aggiungiImmagine(new Immagine("DSCN1073_b_b.jpg", "DSCN1073_b.jpg"));
gallery.aggiungiImmagine(new Immagine("DSCN1153_b_b.jpg", "DSCN1153_b.jpg"));
gallery.aggiungiImmagine(new Immagine("DSCN1154_b_b.jpg", "DSCN1154_b.jpg"));
gallery.aggiungiImmagine(new Immagine("DSCN1208_b_b.jpg", "DSCN1208_b.jpg"));
gallery.aggiungiImmagine(new Immagine("isola_palmaria_b_b.jpg", "isola_palmaria_b.jpg"));
gallery.aggiungiImmagine(new Immagine("nuovo-16_b_b.jpg", "nuovo-16_b.jpg"));
gallery.aggiungiImmagine(new Immagine("P1012835_b_b.jpg", "P1012835_b.jpg"));
gallery.aggiungiImmagine(new Immagine("P8211204_b_b.jpg", "P8211204_b.jpg"));
gallery.aggiungiImmagine(new Immagine("P8211205_b_b.jpg", "P8211205_b.jpg"));
gallery.aggiungiImmagine(new Immagine("P8211225_b_b.jpg", "P8211225_b.jpg"));
gallery.aggiungiImmagine(new Immagine("P8211227_b_b.jpg", "P8211227_b.jpg"));
gallery.aggiungiImmagine(new Immagine("P8211252_b_b.jpg", "P8211252_b.jpg"));
gallery.aggiungiImmagine(new Immagine("panoramica2_b_b.jpg", "panoramica2_b.jpg"));
gallery.aggiungiImmagine(new Immagine("panormaica_b_b.jpg", "panormaica_b.jpg"));
gallery.aggiungiImmagine(new Immagine("san_pietro3_b_b.jpg", "san_pietro3_b.jpg"));
gallery.aggiungiImmagine(new Immagine("san_pietro4_b_b.jpg", "san_pietro4_b.jpg"));
gallery.aggiungiImmagine(new Immagine("san_pietro_b_b.jpg", "san_pietro_b.jpg"));
gallery.aggiungiImmagine(new Immagine("tinetto_b_b.jpg", "tinetto_b.jpg"));
gallery.aggiungiImmagine(new Immagine("tino5_b_b.jpg", "tino5_b.jpg"));
gallery.aggiungiImmagine(new Immagine("tino_b_b.jpg", "tino_b.jpg"));

*/



gestore_gallery.aggiungiGallery(gallery);

// lerici
gallery = new Gallery("Lerici", "lerici", "img/gallery/lerici/");
gallery.aggiungiImmagine(new Immagine("lerici_3_b_b.jpg", "lerici_3_b.jpg"));
gallery.aggiungiImmagine(new Immagine("lerici_b_b.jpg", "lerici_b.jpg"));
gallery.aggiungiImmagine(new Immagine("lerici_castello_grande_b_b.jpg", "lerici_castello_grande_b.jpg"));
gallery.aggiungiImmagine(new Immagine("Lerici_Panorama_con_isole_b_b.jpg", "Lerici_Panorama_con_isole_b.jpg"));

/*gallery.aggiungiImmagine(new Immagine("castello3_b_b.jpg", "castello3_b.jpg"));
gallery.aggiungiImmagine(new Immagine("castello4_b_b.jpg", "castello4_b.jpg"));
gallery.aggiungiImmagine(new Immagine("castello_b_b.jpg", "castello_b.jpg"));
gallery.aggiungiImmagine(new Immagine("lerici castello_b_b.jpg", "lerici castello_b_b.jpg"));
gallery.aggiungiImmagine(new Immagine("nuovo-5_b_b.jpg", "nuovo-5_b.jpg"));
gallery.aggiungiImmagine(new Immagine("nuovo-6_b_b.jpg", "nuovo-6_b.jpg"));
gallery.aggiungiImmagine(new Immagine("Panorama_con_isole_b_b.jpg", "Panorama_con_isole_b.jpg"));
gallery.aggiungiImmagine(new Immagine("tellaro2_b_b.jpg", "tellaro2_b.jpg"));
gallery.aggiungiImmagine(new Immagine("tellaro3_b_b.jpg", "tellaro3_b.jpg"));
gallery.aggiungiImmagine(new Immagine("tellaro12_b_b.jpg", "tellaro12_b.jpg"));
gallery.aggiungiImmagine(new Immagine("Panorama_con_isole_b_b.jpg", "Panorama_con_isole_b.jpg"));
gallery.aggiungiImmagine(new Immagine("tellaro_b_b.jpg", "tellaro_b.jpg")); 
*/

gestore_gallery.aggiungiGallery(gallery);

// riomaggiore
gallery = new Gallery("Riomaggiore", "riomaggiore", "img/gallery/riomaggiore/");
gallery.aggiungiImmagine(new Immagine("Riomaggiore_2_b_b.jpg", "Riomaggiore_2_b.jpg"));
gallery.aggiungiImmagine(new Immagine("riomaggiore_3_b_b.jpg", "riomaggiore_3_b.jpg"));
gallery.aggiungiImmagine(new Immagine("riomaggiore_5_b_b.jpg", "riomaggiore_5_b.jpg"));
gallery.aggiungiImmagine(new Immagine("riomaggiore_6._b_b.jpg", "riomaggiore_6._b.jpg"));
gallery.aggiungiImmagine(new Immagine("riomaggiore_panoramica 2_b_b.jpg", "riomaggiore_panoramica 2_b.jpg"));
gallery.aggiungiImmagine(new Immagine("riomaggiore_panoramica_b_b.jpg", "riomaggiore_panoramica_b.jpg"));

/*gallery.aggiungiImmagine(new Immagine("DSCN0700_b_b.jpg", "DSCN0700_b.jpg"));
gallery.aggiungiImmagine(new Immagine("DSCN1091_b_b.jpg", "DSCN1091_b.jpg"));
gallery.aggiungiImmagine(new Immagine("DSCN1092_b_b.jpg", "DSCN1092_b.jpg"));
gallery.aggiungiImmagine(new Immagine("nuovo-2_b_b.jpg", "nuovo-2_b.jpg"));
gallery.aggiungiImmagine(new Immagine("nuovo-8_b_b.jpg", "nuovo-8_b.jpg"));
gallery.aggiungiImmagine(new Immagine("via_amore_b_b.jpg", "via_amore_b_b.jpg"));
*/
gestore_gallery.aggiungiGallery(gallery);

// manarola
gallery = new Gallery("Manarola", "manarola", "img/gallery/manarola/");
gallery.aggiungiImmagine(new Immagine("manarola_5_b_b.jpg", "manarola_5_b.jpg"));	
gallery.aggiungiImmagine(new Immagine("manarola_6_b_b.jpg", "manarola_6_b.jpg"));

gallery.aggiungiImmagine(new Immagine("man_s.jpg", "man.JPG"));
gallery.aggiungiImmagine(new Immagine("manarola23_s.jpg", "manarola23.JPG"));	
gallery.aggiungiImmagine(new Immagine("manarola 5_s.jpg", "manarola 5.JPG"));	
gallery.aggiungiImmagine(new Immagine("manarola 9_s.jpg", "manarola 9.jpg"));	


/*
gallery.aggiungiImmagine(new Immagine("DSCN1076_b_b.jpg", "DSCN1076_b.jpg"));
gallery.aggiungiImmagine(new Immagine("nuovo-6_b_b.jpg", "nuovo-6_b.jpg"));
gallery.aggiungiImmagine(new Immagine("nuovo-7_b_b.jpg", "nuovo-7_b.jpg"));
gallery.aggiungiImmagine(new Immagine("nuovo-8_b_b.jpg", "nuovo-8_b.jpg"));
gallery.aggiungiImmagine(new Immagine("nuovo-121_b_b.jpg", "nuovo-121_b.jpg"));	
*/

gestore_gallery.aggiungiGallery(gallery);

// corniglia
gallery = new Gallery("Corniglia", "corniglia", "img/gallery/corniglia/");
gallery.aggiungiImmagine(new Immagine("corniglia_2_b_b.jpg", "corniglia_2_b.jpg"));
gallery.aggiungiImmagine(new Immagine("corniglia 3_s.jpg", "corniglia 3.jpg"));


/*
gallery.aggiungiImmagine(new Immagine("aerea_b_b.jpg", "aerea_b.jpg"));
gallery.aggiungiImmagine(new Immagine("DSCN1085_b_b.jpg", "DSCN1085_b.jpg"));
gallery.aggiungiImmagine(new Immagine("nuovo-2_b_b.jpg", "nuovo-2_b.jpg"));
gallery.aggiungiImmagine(new Immagine("nuovo-14_b_b.jpg", "nuovo-14_b.jpg"));
gallery.aggiungiImmagine(new Immagine("nuovo-16_b_b.jpg", "nuovo-16_b.jpg"));
gallery.aggiungiImmagine(new Immagine("nuovo-23_b_b.jpg", "nuovo-23_b.jpg"));
*/


gestore_gallery.aggiungiGallery(gallery);

// vernazza
gallery = new Gallery("Varnazza", "vernazza", "img/gallery/vernazza/");
gallery.aggiungiImmagine(new Immagine("vernazza3_b_b.jpg", "vernazza3_b.jpg"));
gallery.aggiungiImmagine(new Immagine("vernazza_aerea_b_b.jpg", "vernazza_aerea_b.jpg"));
gallery.aggiungiImmagine(new Immagine("vernazza_torre 2_b_b.jpg", "vernazza_torre 2_b.jpg"));
gallery.aggiungiImmagine(new Immagine("vernazzza_chiesa_b_b.jpg", "vernazzza_chiesa_b.jpg"));

/*gallery.aggiungiImmagine(new Immagine("chiesa_b_b.jpg", "chiesa_b.jpg"));
gallery.aggiungiImmagine(new Immagine("da_poppa2_b_b.jpg", "da_poppa2_b.jpg"));
gallery.aggiungiImmagine(new Immagine("da_poppa_b_b.jpg", "da_poppa_b.jpg"));
gallery.aggiungiImmagine(new Immagine("dettaglio_b_b.jpg", "dettaglio_b.jpg"));
gallery.aggiungiImmagine(new Immagine("DSCN1078_b_b.jpg", "DSCN1078_b.jpg"));
gallery.aggiungiImmagine(new Immagine("nuovo-14_b_b.jpg", "nuovo-14_b.jpg"));
gallery.aggiungiImmagine(new Immagine("P1012799_b_b.jpg", "P1012799_b.jpg"));
gallery.aggiungiImmagine(new Immagine("torre2_b_b.jpg", "torre2_b.jpg"));
gallery.aggiungiImmagine(new Immagine("vernazza_aerea_b_b.jpg", "vernazza_aerea_b.jpg"));
*/


gestore_gallery.aggiungiGallery(gallery);

// monterosso
gallery = new Gallery("Monterosso", "monterosso", "img/gallery/monterosso/");
gallery.aggiungiImmagine(new Immagine("monterosso_2_b_b.jpg", "monterosso_2_b.jpg"));
gallery.aggiungiImmagine(new Immagine("monterosso__gigante_b_b.jpg", "monterosso__gigante_b.jpg"));
gallery.aggiungiImmagine(new Immagine("monterosso_costa_b_b.jpg", "monterosso_costa_b.jpg"));
gallery.aggiungiImmagine(new Immagine("monterosso_ex_convento_capuccini_b_b.jpg", "monterosso_ex_convento_capuccini_b.jpg"));
gallery.aggiungiImmagine(new Immagine("monterosso_gigante_b_b.jpg", "monterosso_gigante_b.jpg"));
gallery.aggiungiImmagine(new Immagine("monterosso_scoglio_mapassu_b_b.jpg", "monterosso_scoglio_mapassu_b.jpg"));
gallery.aggiungiImmagine(new Immagine("monterosso_spiaggia_b_b.jpg", "monterosso_spiaggia_b.jpg"));
gallery.aggiungiImmagine(new Immagine("monterosso_torre_aurora_b_b.jpg", "monterosso_torre_aurora_b.jpg"));
gallery.aggiungiImmagine(new Immagine("monterosso_torre_aurora_costa_b_b.jpg", "monterosso_torre_aurora_costa_b.jpg"));

/*gallery.aggiungiImmagine(new Immagine("fegina_b_b.jpg", "fegina_b.jpg"));
gallery.aggiungiImmagine(new Immagine("monterosso_b_b.jpg", "monterosso_b.jpg"));
gallery.aggiungiImmagine(new Immagine("P1012782_b_b.jpg", "P1012782_b.jpg"));
gallery.aggiungiImmagine(new Immagine("paese_vecchio2_b_b.jpg", "paese_vecchio2_b.jpg"));
gallery.aggiungiImmagine(new Immagine("paese_vecchio_2_b_b.jpg", "paese_vecchio_2_b.jpg"));
gallery.aggiungiImmagine(new Immagine("panorama_paese_vecchio_b_b.jpg", "panorama_paese_vecchio_b.jpg"));
gallery.aggiungiImmagine(new Immagine("passeggiata2_b_b.jpg", "passeggiata2_b.jpg"));
*/

gestore_gallery.aggiungiGallery(gallery);

// levanto
gallery = new Gallery("Levanto", "levanto", "img/gallery/levanto/");
gallery.aggiungiImmagine(new Immagine("campanile_b_b.jpg", "campanile_b.jpg"));
gallery.aggiungiImmagine(new Immagine("panoramica_b_b.jpg", "panoramica_b.jpg"));
gallery.aggiungiImmagine(new Immagine("passeggiata_b_b.jpg", "passeggiata_b.jpg"));

gestore_gallery.aggiungiGallery(gallery);


// marinella
gallery = new Gallery("Marinella di Sarzana", "marinella", "img/gallery/marinella/");
gallery.aggiungiImmagine(new Immagine("marinella_b_b.jpg", "marinella_b.jpg"));


gestore_gallery.aggiungiGallery(gallery);

// bonassola
//gallery = new Gallery("Bonassola", "bonassola", "img/gallery/bonassola/");
//gallery.aggiungiImmagine(new Immagine("pic_01_s.jpg", "pic_01_b.jpg"));


//gestore_gallery.aggiungiGallery(gallery);

// moneglia
//gallery = new Gallery("Moneglia", "moneglia", "img/gallery/moneglia/");
//gallery.aggiungiImmagine(new Immagine("pic_01_s.jpg", "pic_01_b.jpg"));

//gestore_gallery.aggiungiGallery(gallery);


/*-----------------------------------------------------------/*/
