function choices()
{
	this[0] = 1;
this[1] = "<p class=\"font_menu\">&nbsp;|&nbsp;<a href=\"battisti.htm\" class=\"down\">battisti</a>&nbsp;|&nbsp;<a href=\"dalla.htm\" class=\"down\">dalla</a>&nbsp;|&nbsp;<a href=\"pino_daniele.htm\" class=\"down\">daniele</a>&nbsp;|&nbsp;<a href=\"elio.htm\" class=\"down\">elio</a>&nbsp;|&nbsp;<a href=\"jovanotti.htm\" class=\"down\">jovanotti</a>&nbsp;|&nbsp;<a href=\"lennon.htm\" class=\"down\">lennon</a>&nbsp;|&nbsp;<a href=\"litfiba.htm\" class=\"down\">litfiba</a>&nbsp;|&nbsp;<a href=\"rossi.htm\" class=\"down\">rossi</a>&nbsp;|&nbsp;<a href=\"ledzep.htm\" class=\"down\">zeppelin</a>&nbsp;|&nbsp;</p>";

}
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());
