$(document).ready(function () {

 // DEFILEMENT PHOTOS ACCUEIL
    var period = 3000;
var max_id = 5;
var id = 1;
changeImg();

function changeImg(){
    $("#diapo").empty().append('<img src="./images/diapo/image'+ id + '.jpg"  style="margin-top:65px;margin-left:30px;" >');
   ( id == max_id )? id = 1 : id++;
    setTimeout(changeImg, period);
    }

});

 // FAVORIS

function favoris() {
    if ( navigator.appName != 'Microsoft Internet Explorer' ){
		window.sidebar.addPanel("Le bistroquet ","http://www.le-bistroquet.fr","");
	} else {
		window.external.AddFavorite("http://www.le-bistroquet.fr","Le Bistroquet ");
	}
}