/**
 * @author elz
 */




function moving_diapo_txt(){
	
	$('div.bloc-txt p').animate({
		color: '#00000f'
	}, 1000, function(){
		
			$(this).animate({
				color: '#C73A42'
			
			}, 1500, function(){
			$(this).animate({
				color: '#00000f'
			}, 1000);
		});
	 	
	});
}
function diapo_txt(){
	//$('div#intro').hide();
	setInterval('moving_diapo_txt()',4000);
}


$(document).ready(function() {	

$('.fond-bloc-txt').css('background-color','#FDFDFD');

$('.fond-bloc-txt').animate({
   opacity: '0.5'
}, 'slow');


	
	diapo_txt();

});
