$(document).ready(function(){

$("#pageindexsomm div ul ul").hide();
$("#pageindexsomm div ul ul ul").show(); //sous-sous-menus

$("#pageindexsomm div ul li a").click(function(){
		$(this).parent().parent().children("li").find("ul.montre").slideToggle("").removeClass("montre").addClass("matched");
		$(this).parent().children("ul").not(".matched").addClass("montre").slideToggle("slow");
		$(this).parent().parent().children("li").find("ul.matched").removeClass("matched");
		if ($(this).attr("href") == "#") {
				return false;
		}
});

}); //fin onready
