// JavaScript
	
	$(window).load(
	
function(){
	
   $('#texte').fadeIn('slow', function() {
     
      });
   
	}
);



function rafraichit()
{
	// $('#texte').fadeOut('slow', function() {
	// $("#texte").css("display", "none"); 
	 $("#texte").load("une.php");
	  //   $('#texte').fadeIn('slow', function() {
     
     // });	
	// });	
}
$(document).ready(function(){
	 $("#texte").load("une.php");
	 
  setInterval(rafraichit, 7000); // Toutes les 10s
});


