function choices()
{
	this[0] = 8;

this[1] = "<img src='foto/marzamemi.jpg' width='650' height='284' alt='Marzamemi'>";
this[2] = "<img src='foto/granelli.jpg' width='650' height='284' alt='Granelli'>";
this[3] = "<img src='foto/marzamemi2.jpg' width='650' height='284' alt='Marzamemi'>";
this[4] = "<img src='foto/marzamemi3.jpg' width='650' height='284' alt='Marzamemi'>";
this[5] = "<img src='foto/marzamemi4.jpg' width='650' height='284' alt='Marzamemi'>";
this[6] = "<img src='foto/marzamemi5.jpg' width='650' height='284' alt='Marzamemi'>";
this[7] = "<img src='foto/portopalo.jpg' width='650' height='284' alt='Portopalo di Capo Passero'>";
this[8] = "<img src='foto/grotta-concerie.jpg' width='650' height='284' alt='Grotta Concerie'>";


}
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.writeln(grabBanner());


