
var quotations = new Array()
quotations[0]= "cocktail";
quotations[1]= "inauguration";
quotations[2]= "arbre de no&euml;l";
quotations[3]= "lancement de produit";
quotations[4]= "soir&eacute;e de gala";
quotations[5]= "journ&eacute;e portes ouvertes";
quotations[6]= "s&eacute;minaire";
quotations[7]= "convention";
quotations[8]= "congr&egrave;s";


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


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





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