jQuery().ready(function(){
	$(".contenu_depliable").hide();
	$(".titre_art").click(function(){
		if($(this).next("div").is(":hidden")){
				$(".titre_art").next("div:visible").slideUp(2000);
				$(this).next("div").slideDown(2000);
		}
	})
});





jQuery().ready(function(){
	$(".page").hide();
	$(".page:first").show();
	$(".pagination:first").css({cursor: "text", color: "white" });

	$(".pagination").each(function(i){
		this.index = i  ;
	 });
	$(".pagination").click(function(){
		$(".page").hide();
		$(this).css({cursor: "text", color: "white" });
		var a = $(this).attr("index");
		$(".page").each(function(i){
			this.index = i  ;
			if(i == a){
				$(this).fadeIn();
			}
		 });
	});
});

jQuery().ready(function(){
	$(".ferme").hide();
	$(".titre-accordeon").click(function(){
		if($(this).next("div").is(":hidden")){
				$(".titre-accordeon").next("div:visible").slideUp();
				$(this).next("div").slideDown();
		}
	})
});