/*
accordeon page sommaire
*/

/*
$(document).ready(function() { 				   
   $("div#gauche > div.cacher").hide(); 
   $("div#gauche > h3.montrer").click(function() {
   		if ($(this).next("div.cacher:visible").length != 0) {
			$(this).next("div.cacher").hide();
		}
		else {
			$(this).next("div.cacher").slideDown("fast").siblings("div.cacher").slideUp("fast");
		}
   });
});
*/

$(document).ready(function() { 				   
   $("div#gauche > div.cacher").hide(); 
   $("div#gauche > h3.montrer").click(function() {
   		if ($(this).next("div.cacher:visible").length != 0) {
			$(this).next("div.cacher").hide();
		}
		else {
			$(this).next("div.cacher").slideDown("fast");
			if ($(this).next("div.cacher").siblings("div.cacher:visible").length != 0) {$(this).next("div.cacher").siblings("div.cacher:visible").slideUp("fast")};
		}
   });
});
