$(function(){
	$("#galerie_simple .photo").hide();
	$("#galerie_simple .photo:first").show();

	
	// Navigation automatique
	$("#galerie_simple").everyTime(4000, "galerie_timer", function(){
	
		photo_index++;
		if (photo_index >= total_photos) {
			photo_index = 0;
		}
		
		switch_to_index(photo_index);
		
	});
})


// Changement de photo manuel
function change_manuel(index) {
	// On désactive le timer
	$("#galerie_simple").stopTime("galerie_timer");
	
	switch_to_index(index);
}


function switch_to_index(index) {
	$("#galerie_simple .photo:visible").fadeOut("slow");
	$("#galerie_simple .photo").eq(photo_index).fadeIn("slow");

}