$("document").ready(function(){

	$("#faq .gray-btn").click(function(){
		
		
		$(this).parents("#faq").find(".reponse-faq").hide();
		$(this).parents("#faq").find(".gray-btn").removeClass("active-gray-btn");
		
		$(this).parents("tr").find(".reponse-faq").show("slow");
		$(this).addClass("active-gray-btn");
		
	});
	
});	
