jQuery().ready(function(){
	//$(".texte").next("div").hide();
	
	$(".texte").click(function(){
	
		var selecteur = "#" + $(this).parent().attr('id') + ".action_gauche_down";
		//alert(selecteur);
			
		if($(this).next("div").is(":hidden")){
			$(".texte").next("div:visible").slideUp();
			$(this).next("div").slideDown();
			
		};
		
		//if($("li").find(".contenu")){
		$(".action_gauche_up").addClass("action_gauche_down").removeClass("action_gauche_up");
		//};
		//$(".couleur_1").addClass("couleur1").removeClass("couleur1");
		
		$(selecteur).addClass("action_gauche_up").removeClass("action_gauche_down");
	});
	
});

