<!---
function choices()
{
this[0] = 33;
this[1] = "ride,";
this[2] = "parla,";
this[3] = "è sincero,";
this[4] = "sembra sincero,";
this[5] = "tace,";
this[6] = "vince,";
this[7] = "scende la notte,";
this[8] = "odia,";
this[9] = "apre bocca,";
this[10] = "apprezza,";
this[11] = "caca,";
this[12] = "cade,";
this[13] = "corre ai ripari,";
this[14] = "crede in quello che fa,";
this[15] = "sorride,";
this[16] = "fa finta di capire,";
this[17] = "ti ascolta,";
this[18] = "vuole,";
this[19] = "ne ha voglia,";
this[20] = "gli pare,";
this[21] = "ne ha bisogno,";
this[22] = "non ti ascolta,";
this[23] = "non ci credi,";
this[24] = "te ne innamori,";
this[25] = "vince,";
this[26] = "perde,";
this[27] = "ti affascina,";
this[28] = "si fa capire,";
this[29] = "di spada ferisce,";
this[30] = "va tanto al lardo,";
this[31] = "troppo vuole,";
this[32] = "troppo in alto sale,";
this[33] = "vuole comandare,";


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