$(document).ready(function() {
    var posSlide = 0;
    var lectureAuto = true;
    var nb_slides = $(".produit_accueil").length;
    var tempsAnimation = 4000;
    var tempsRetour = 15000;
    var tempsAttente = 2500;
    var largeurSlide = 350;

    $(".wrapper_produits").css("width",nb_slides*largeurSlide+"px");

    if(lectureAuto) { startAnim(); }
					
    function startAnim() { timerAnim = setInterval(lectureAutomatique, tempsAttente); }
					
    function lectureAutomatique() {
	if( posSlide == nb_slides-1) {
	    posSlide = 0;
	    $(".wrapper_produits").animate({ marginLeft: 0 }, tempsRetour);
	} else {
	    posSlide++;
	    $(".wrapper_produits").animate({ marginLeft: -(posSlide*largeurSlide) }, tempsAnimation);
        }
    }
});
