$(document).ready(function(){
	$(".btn-slide-infos").click(function(){
		$("#infos").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});
	
	 $(".btn-slide-demande").click(function(){
		$("#demande").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});
	 $(".btn-slide-texte").click(function(){
		$("#texte").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});
});


