
var quotations2 = new Array()
quotations2[0]= "o&ugrave; ?";
quotations2[1]= "avec qui ?";
quotations2[2]= "pourquoi ?";

quotations2[3]= "non ?";
quotations2[4]= "oui !";
quotations2[5]= "quand ?";
quotations2[6]= "maintenant";
quotations2[7]= "la btise est effrayante";

//quotations2[5]= "<img src='Images_Dynameet/EcranCrescent.jpg' alt='' height='32' width='32' border='0'>";


var newBanner2 = 0;
var totalBan2 = quotations2.length;


function displayRandom2()
{
a=Math.floor(Math.random()*quotations2.length)
document.getElementById('DIV_Dessus2').innerHTML=quotations2[a]
setTimeout("displayRandom2()",150)
}





function displayCycle2()
{
newBanner2++;
if (newBanner2 == totalBan2) {
newBanner2 = 0;
}
document.getElementById('DIV_Dessus2').innerHTML=quotations2[newBanner2]
setTimeout("displayCycle2()", 1*100);
}

