jQuery().ready(function(){

  $(".accueil_bons_plans_table").each(function(){
    
    var nbElement = $(this).children("tbody").children('tr').children('td').length;
    var deplacement = 450;
    var aleatoire = 3000;
    var enCours = 1;
    
    $(this).everyTime(aleatoire , function(i) {
    
      var position = $(this).position();
      var gauche = position.left - deplacement;
      
      $(this).animate({
        left:gauche+"px"
        }, 400, function() {
        
          // Animation complete
          enCours++;
          if(enCours==nbElement){
            $(this).css("left" , "0px");
            enCours = 1;
          }
          
        }
        
      );
      
    });
    
  });

});
