﻿$(function() {
    
    // Tagger ce qui est visible présentement
    $("#acc_bandeau .photo_bandeau:first").addClass("selected");
    $("#acc_bandeau .description_photo:first").addClass("selected");
    
    $("#acc_bandeau #texte_intro").hide();    
    
    $("#acc_bandeau #overlay_navig").hide();
    $("#acc_bandeau #contenu_overlay_navig").hide();
    
    setTimeout("$(\"#acc_bandeau #texte_intro\").fadeIn(3000);", 500);	       
	setTimeout("slideshow_start()", 8000);
            
});

function slideshow_start() {
	$("#acc_bandeau .photo_bandeau:first").show();
	$("#acc_bandeau .description_photo:first").show();
	$("#acc_bandeau #overlay_navig").show();
	$("#acc_bandeau #contenu_overlay_navig").show();
	$("#acc_bandeau #intro_terre").fadeOut(1500);
	$("#acc_bandeau #texte_intro").fadeOut(1000);
	setTimeout("slideshow_step();", 5000);
}

function slideshow_step() {	

	var next = null;
	if ( $("#acc_bandeau .photo_bandeau.selected").next().filter(".photo_bandeau").length > 0 ) {
		next = $("#acc_bandeau .photo_bandeau.selected").next();
	} else {
		next = $("#acc_bandeau .photo_bandeau:first");
	}
 
	$("#acc_bandeau .photo_bandeau.selected").removeClass("selected").fadeOut(1000);
    $("#acc_bandeau .description_photo.selected").removeClass("selected").fadeOut(1000);
            
    id = next.attr("id").split("_")[2];
            
    $("#acc_bandeau #photo_bandeau_" + id).fadeIn(1000).addClass("selected");
    $("#acc_bandeau #description_photo_" + id).fadeIn(1000).addClass("selected");
    
	setTimeout("slideshow_step();", 5000);	
}