function choices()
{
	this[0] = 10;
this[1] = "<img src=\"http://www.experienza.com/immag/foto0.jpg\">";
this[2] = "<img src=\"http://www.experienza.com/immag/foto1.jpg\">";
this[3] = "<img src=\"http://www.experienza.com/immag/foto2.jpg\">";
this[4] = "<img src=\"http://www.experienza.com/immag/foto3.jpg\">";
this[5] = "<img src=\"http://www.experienza.com/immag/foto4.jpg\">";
this[6] = "<img src=\"http://www.experienza.com/immag/foto5.jpg\">";
this[7] = "<img src=\"http://www.experienza.com/immag/foto6.jpg\">";
this[8] = "<img src=\"http://www.experienza.com/immag/foto7.jpg\">";
this[9] = "<img src=\"http://www.experienza.com/immag/foto8.jpg\">";
this[10] = "<img src=\"http://www.experienza.com/immag/foto9.jpg\">";

}
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());

