function choices()
{
	this[0] = 11;
this[1] = "<img src=\"images/foto1.jpg\" width=411 height=201  border=0 alt=\"Primo banner\">";
this[2] = "<img src=\"images/foto2.jpg\" width=411 height=201 border=0 alt=\"Secondo banner\">";
this[3] = "<img src=\"images/foto3.jpg\" width=411 height=201 border=0 alt=\"Terzo banner\">";
this[4] = "<img src=\"images/foto4.jpg\" width=411 height=201 border=0 alt=\"Quarto banner\">";
this[5] = "<img src=\"images/foto5.jpg\" width=411 height=201 border=0 alt=\"Quinto banner\">";
this[6] = "<img src=\"images/foto6.jpg\" width=411 height=201 border=0 alt=\"Sesto banner\">";
this[7] = "<img src=\"images/foto7.jpg\" width=411 height=201 border=0 alt=\"Settimo banner\">";
this[8] = "<img src=\"images/foto8.jpg\" width=411 height=201 border=0 alt=\"Ottavo banner\">";
this[9] = "<img src=\"images/foto9.jpg\" width=411 height=201 border=0 alt=\"Nono banner\">";
this[10] = "<img src=\"images/foto10.jpg\" width=411 height=201 border=0 alt=\"Decimo banner\">";
this[11] = "<img src=\"images/foto11.jpg\" width=411 height=201 border=0 alt=\"Undicesimo banner\">";
}
function popUpBanner(list)
{	
	var today = new Date();
	var choiceInstance = new choices();
	var Banner = choiceInstance[(today.getSeconds() % choiceInstance[0]) + 1];
}
function grabBanner()
{
	var today = new Date();
	var choiceInstance = new choices();
	var Banner = choiceInstance[(today.getSeconds() % choiceInstance[0]) + 1];
	return Banner;
}
document.write(grabBanner());

