
var photos = new Array()

photos[0]= "<img src='Dos_Photos_Groupes/Lounge.jpg' alt='' height='50' border='0'>";
photos[1]= "<img src='Dos_Photos_Groupes/ThirdRoam2.jpg' alt='' height='50' border='0'>";
photos[2]= "<img src='Dos_Photos_Groupes/Hollers1.jpg' alt='' height='50' border='0'>";
photos[3]= "<img src='Dos_Photos_Groupes/Desarches2.jpg' alt='' height='50' border='0'>";
photos[4]= "<img src='Dos_Photos_Groupes/RedBerries.jpg' alt='' height='50' border='0'>";

photos[5]= "<img src='Dos_Photos_Groupes/TimeFeel.jpg' alt='' height='50' border='0'>";

var newBannerPhotos = 0;


var totalBanPhotos = photos.length;


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





function displayCycle2()
{
newBannerPhotos++;
if (newBannerPhotos == totalBanPhotos) {
newBannerPhotos = 0;
}
document.getElementById('Recept_HomePhotos').innerHTML=photos[newBanner]
setTimeout("displayCycle2()", 4*1000);
}
