var url;
url=1;

function img_statique()
{
document.test.src = 'images/Photos/'+url+'.jpg';
}


function img_pre()
{
url--;
if(url>0)
document.test.src = 'images/Photos/'+url+'.jpg';
else url=66;
document.test.src = 'images/Photos/'+url+'.jpg';
}


function img_play()
{
play=setInterval('img_suiv()',5000);
}


function img_pause()
{
clearInterval(play);
}


function img_suiv()
{
url++;
if(url<67)
document.test.src = 'images/Photos/'+url+'.jpg';
else url=1;
document.test.src = 'images/Photos/'+url+'.jpg';
}


function afficher(object)
{
window.open (object+'.html');
}

function img1(id,src)
{
document.getElementById(id).src=src;
}

function img2(id,src)
{
document.getElementById(id).src=src;
}



