$(function () {
	
	/* lire la suite des contenus*/
	
	$('.liresuite').toggle(function(){
    	$(this).parents('p').prev('.lireLaSuite').removeClass('lireLaSuite') ;
    	$(this).text('Réduire');
    },function(){
    	$(this).parents('p').prev('p').addClass('lireLaSuite') ;
    	$(this).text('Lire la suite');
    });
});

