$(document).ready(function(){
	setInterval(
		function(){
			$.ajax({
				type: 'GET',
				url: temoignageAjaxUrl,
				data: 'id='+$('p.testimonial').attr('id'),
				success: function(html){
					$('#temoignages').fadeOut(
						"slow",
						function(){
							$(this).html(html);
							$(this).fadeIn("slow");
						}
					);
				}
			});
		},
		6000
	);
});