var imgList = ["Polo_16.jpg",
"Polo_01.jpg",
"Vita_23.jpg",
"Vita_21.jpg",
"Polo_0a.jpg",
"Vita_22.jpg",
"Polo_13.jpg",
"Vita_29.jpg",
"Vita_20.jpg",
"Polo_12.jpg",
"Polo_15.jpg",
"Polo_17.jpg",
"Polo_07.jpg",
"Polo_08.jpg",
"Polo_10.jpg",
"Polo_06.jpg",
"Vita_28.jpg",
"Polo_09.jpg",
"Polo_05.jpg",
"Polo_11.jpg",
"Polo_18.jpg",
"Polo_04.jpg",
"Vita_27.jpg",
"Vita_0e.jpg",
"Polo_02.jpg",
"Vita_26.jpg",
"Vita_0d.jpg",
"Polo_14.jpg",
"Vita_25.jpg",
"Polo_0b.jpg",
"Polo_03.jpg",
"Vita_24.jpg",
"Polo_0c.jpg",
]; // array contenente le immagini;
var ncol = 3; // numero colonne;
var nfoto = imgList.length; // numero foto;
var folder = "../Galleria/"; //cartella in cui sono contenute le immagini
var nomeStd = ""; // elemento costante nel nome delle foto (image1.jpg,image2.jpg => image)
var pref_big = ""; // suffisso per le foto grandi
var pref_small = "Thumbnails/"; // suffisso per le foto piccole
var suf_big = ""; // suffisso per le foto grandi
var suf_small = ""; // suffisso per le foto piccole
var ext = ""; // estensione foto
var i = 0;
/* fine elementi variabili */

function photo_grande() {
	document.write("<IMG SRC=\""+folder+pref_big+nomeStd+imgList[0]+suf_big+ext+"\" NAME=\"grande\" BORDER=\"0\">");
}

function photo_gallery() {
	document.write("<TABLE CELLSPACING=\"0\" CELLPADDING=\"2\" BORDER=\"0\"><TR VALIGN=\"Center\">");
	for (i=1;i<=nfoto;i++) {
		document.write("<TD ALIGN=\"Center\" BACKGROUND=\"#444444\">");
		// document.write("<P>IMG SRC=\""+folder+pref_small+nomeStd+imgList[i-1]+suf_small+ext+"\" BORDER=\"0\"</P>");
		if (imgList[i-1]!="") {
			document.write("<A HREF=\"#\" ONCLICK=\"document.grande.src='"+folder+pref_big+nomeStd+imgList[i-1]+suf_big+ext+"'\">");
			document.write("<IMG SRC=\""+folder+pref_small+nomeStd+imgList[i-1]+suf_small+ext+"\" BORDER=\"0\"></A>");
		}
		document.write("</TD>");
		if (i%ncol == 0) {
			document.write("</TR>");
			document.write("<TR>");
		}
	}
	document.write("</TR></TABLE>");
}

