
function choices()
{
	this[0] = 5;
this[1] = "<img src=\"images/cab01.jpg\" width=240 height=80 border=0 alt=\"ROTARY CLUB\">";
this[2] = "<img src=\"images/cab02.jpg\" width=240 height=80 border=0 alt=\"ROTARY CLUB\">";
this[3] = "<img src=\"images/cab03.jpg\" width=240 height=80 border=0 alt=\"ROTARY CLUB\">";
this[4] = "<img src=\"images/cab04.jpg\" width=240 height=80 border=0 alt=\"ROTARY CLUB\">";
this[5] = "<img src=\"images/cab05.jpg\" width=240 height=80 border=0 alt=\"ROTARY CLUB\">";

}
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());

