
<!---
function choices()
{
	this[0] = 12;
this[1] = "<img src=\"cereto.jpg\" width=600 height=400 border=1 >";
this[2] = "<img src=\"home1.jpg\" width=600 height=400 border=1 >";
this[3] = "<img src=\"home2.jpg\" width=600 height=400 border=1 >";
this[4] = "<img src=\"home3.jpg\" width=600 height=400 border=1 >";
this[5] = "<img src=\"home4.jpg\" width=600 height=400 border=1 >";
this[6] = "<img src=\"home5.jpg\" width=600 height=400 border=1 >";
this[7] = "<img src=\"home6.jpg\" width=600 height=400 border=1 >";
this[8] = "<img src=\"home7.jpg\" width=600 height=400 border=1 >";
this[9] = "<img src=\"home8.jpg\" width=600 height=400 border=1 >";
this[10] = "<img src=\"home9.jpg\" width=600 height=400 border=1 >";
this[11] = "<img src=\"home10.jpg\" width=600 height=400 border=1 >";
this[12] = "<img src=\"home11.jpg\" width=600 height=400 border=1 >";


}
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());
//  FINE   --->
