function choices() 
{ 
this[0] = 8;
	this[1] = "<img src=\/img/shot_01.jpg\ width=135 height=115 border=0 alt=\" Pannello Admin modifica prodotti \"></a>";
	this[2] = "<img src=\/img/shot_02.jpg\ width=135 height=115 border=0 alt=\" Pannello Admin elenco ordini inevasi \"></a>";
	this[3] = "<img src=\/img/shot_03.jpg\ width=135 height=115 border=0 alt=\" Home page standard \"></a>";
	this[4] = "<img src=\/img/shot_04.jpg\ width=135 height=115 border=0 alt=\" Catalogo dei prodotti \"></a>";
	this[5] = "<img src=\/img/shot_05.jpg\ width=135 height=115 border=0 alt=\" Contenuto del carrello \"></a>";
	this[6] = "<img src=\/img/shot_06.jpg\ width=135 height=115 border=0 alt=\" Registrazione nuovo utente \"></a>";
	this[7] = "<img src=\/img/shot_07.jpg\ width=135 height=115 border=0 alt=\" Pannello Admin \"></a>";
	this[8] = "<img src=\/img/shot_08.jpg\ width=135 height=115 border=0 alt=\" Pannello Admin modifica variabili di sistema \"></a>";
}

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());