// JavaScript Document

<!---
function choices()
{
this[0] = 6;
this[1] = "<img src=\"http://www.ilcovodelribelle.com/images/sf/sf1.jpg\" width=267 height=213 border=0 alt=\"il covo del ribelle\">";
this[2] = "<img src=\"http://www.ilcovodelribelle.com/images/sf/sf2.jpg\" width=267 height=213 border=0 alt=\"il covo del ribelle\">";
this[3] = "<img src=\"http://www.ilcovodelribelle.com/images/sf/sf3.jpg\" width=267 height=213 border=0 alt=\"il covo del ribelle\">";
this[4] = "<img src=\"http://www.ilcovodelribelle.com/images/sf/sf4.jpg\" width=267 height=213 border=0 alt=\"il covo del ribelle\">";
this[5] = "<img src=\"http://www.ilcovodelribelle.com/images/sf/sf5.jpg\" width=267 height=213 border=0 alt=\"il covo del ribelle\">";
this[6] = "<img src=\"http://www.ilcovodelribelle.com/images/sf/sf6.jpg\" width=267 height=213 border=0 alt=\"il covo del ribelle\">";

}
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 --->