// JavaScript Document
$(".toggl").ready(function () {						  
		$(".toggl").toggle(function(){
		var id = $(this).attr("item");	
		 $("#"+id).show("slow");
	 },function(){
		 var id = $(this).attr("item");	
		$("#"+id).hide("slow");
	 });

		});	


// articles rubrique PERP, pour ne pas quitter la rubrique
$(".opentexte").ready(function () {						  
		$(".opentexte").toggle(function(){
		var id = $(this).attr("item");	
		 $("#"+id).show("slow");
	 },function(){
		 var id = $(this).attr("item");	
		$("#"+id).hide("slow");
	 });

});	







