// JavaScript Document
$(document).ready(
	function(){
	
		//$("#block").hide();
		$("#show-next").next("div").hide();
		$(".clg-bouton").next("div").hide();
		
		$("#show-next").click(
			function(){
				$(this).next("div").toggle("fast");
			}
		);
		
		$(".clg-bouton").click(
			function(){
				$(".clg-bouton").next("div").slideToggle("normal");
				return false;
			}
		);

	}
);