function banniere(){
$("#rotateur_text").fadeOut('fast').html();
$.ajax({
   type: "POST",
   url: "http://www.helpturf.com/rotateur.php",
   success: function(msg){
	if(msg == 0){
     	$("#rotateur_text").fadeIn('slow').html('Pas de news actuellement...');
	setTimeout("banniere()",10000);
	}else{
     	$("#rotateur_text").fadeIn('slow').html(msg);
     	setTimeout("banniere()",10000);
	}
   }
 });
}

