
var quotations = new Array()

quotations[0]= "Portes Ouvertes + Carnivor' Quartet - 23/09";


quotations[1]= "Philippe Berecq Group - 1/10";

quotations[2]= "Julien Bertrand invite Jo&euml;l Holmes - 15/10";

quotations[3]= "Jam - 20/10";

quotations[4]= "Quinze T&ecirc;tes Ap&eacute;ro-concert - 6/11";

quotations[5]= "Jam - 17/11";

quotations[6]= "Programmation en cours... - 19/11";


quotations[7]= "Carte Blanche &agrave; Thibaud Saby - 3/11";

quotations[8]= "Jam - 8/12";

quotations[9]= "Gl&uuml;ck + Akale Wube - 10/12";

quotations[10]= "Marc Thomas - 17/12";





var newBanner = 0;

var totalBan = quotations.length;


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





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


