
var quotations = new Array()
quotations[0]= "sites&nbsp;internet";
quotations[1]= "images&nbsp;virtuelles";
quotations[2]= "print";
quotations[3]= "web";
quotations[4]= "multimedia";



var newBanner = 0;
var totalBan = quotations.length;


function displayRandom()
{
a=Math.floor(Math.random()*quotations.length)
document.getElementById('DIV_Dessus').innerHTML=quotations[a]
setTimeout("displayRandom()",1800)
}





function displayCycle()
{
newBanner++;
if (newBanner == totalBan) {
newBanner = 0;
}
document.getElementById('DIV_Dessus').innerHTML=quotations[newBanner]
setTimeout("displayCycle()", 3*1000);
}

