$(document).ready(function(){

$("#accordeon ul ul").hide();
$("#accordeon ul ul ul").hide(); //sous-sous-menus

$("#accordeon 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
