
var quotations = new Array()
quotations[0]= "jazz new-orleans";
quotations[1]= "jazz manouche";
quotations[2]= "jazz swing";
quotations[3]= "jazz soul";
quotations[4]= "jazz vocal";



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


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





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