var timer = 0;
$(document).ready(
	function(){
		$("#dynamique").html('<img src="medias/interface/lightbox-ico-loading.gif" id="chargement" />');
		$("#dynamique").fadeIn('slow', function(){
			$.ajax({
			type: "POST",
			url: "inclusions/projet_aleatoire.php",
			data: "",
			success: function(html){
					$("#dynamique").fadeOut('slow',function(){
						$("#dynamique").html(html);
						$("#dynamique").fadeIn('slow');
						timer = setInterval(changerProjet,8000);									
					});
				}
			});				
		})	
	}
);
function changerProjet(){
	clearInterval(timer);
	$("#dynamique").fadeOut('slow',
	function(){		
		$("#dynamique").html('<img src="medias/interface/lightbox-ico-loading.gif" id="chargement" />');
		$("#dynamique").fadeIn('slow', function(){
			$.ajax({
			type: "POST",
			url: "inclusions/projet_aleatoire.php",
			data: "",
			success: function(html){
					$("#dynamique").fadeOut('slow',function(){
						$("#dynamique").html(html);
						$("#dynamique").fadeIn('slow');
						timer = setInterval(changerProjet,8000);									
					});
				}
			});				
		})	
	})
}	