$(document).ready(function() {

	$(document).everyTime(10000, function(i) {
		$(".vendu:first").fadeOut(1500,function(i) {
			$(this).addClass("hide");
			$(".vendu:last").after($(this));

			$(".vendu.hide:first").hide().removeClass("hide").fadeIn(1500);
	 	});
	});

});

