var images = new Array();
var imagecount = 0;
var maxNum = 28;
var folder = "./live/060609_granaio";

images[0] = "01_Tommy.jpg";
images[1] = "02_Tommy.jpg";
images[2] = "03_Tommy.jpg";
images[3] = "04_Tommy.jpg";
images[4] = "05_Tommy.jpg";
images[5] = "06_Tommy.jpg";
images[6] = "07_Tommy.jpg";
images[7] = "08_Tommy.jpg";
images[8] = "09_Tommy.jpg";
images[9] = "10_Tommy.jpg";
images[10] ="11_Tommy.jpg";
images[11] ="12_Tommy.jpg";
images[12] ="13_Tommy.jpg";
images[13] ="14_Tommy.jpg";
images[14] ="15_Tommy.jpg";
images[15] ="16_Tommy.jpg";
images[16] ="17_Tommy.jpg";
images[17] ="18_Tommy.jpg";
images[18] ="19_Tommy.jpg";
images[19] ="20_Tommy.jpg";
images[20] ="21_Tommy.jpg";
images[21] ="22_Tommy.jpg";
images[22] ="23_Tommy.jpg";
images[23] ="24_Tommy.jpg";
images[24] ="25_Tommy.jpg";
images[25] ="26_Tommy.jpg";
images[26] ="27_Tommy.jpg";
images[27] ="28_Tommy.jpg";
images[28] ="29_Tommy.jpg";



function getNextImage() { 

	var outputString = '<a href="'+folder+'/resize20/'+images[imagecount]+'" target="_blank"><IMG SRC="'+folder+'/thumbs/'+images[imagecount]+'"></a>';
	document.write(outputString) ;

}

function generatePage(BGcolor) {
    while(imagecount<=maxNum)
    	{
	if(imagecount%3==0)
		{
		document.write('<TR>');
		}
	document.write('<TD width=33% align=center valign=middle>');
	document.write('<TABLE cellSpacing=4 cellPadding=8 width="100%" align=center>');
	document.write('<TR><TD class=normal-text align=center valign=center bgcolor='+BGcolor+' valign=top height=200>');
	getNextImage();
	document.write('</TD></TR></TABLE></TD>');
	if(imagecount%3==2)
		{
		document.write('</TR>');
		}
	imagecount++;
	}
}


