$(document).ready(function()
{
// First we hide all exhibitis 
$("#menu ul.sub-section").hide();

// then the active exhibit is showed
//$("#menu ul").each(function()
//{
//$(this).find("li.active").prevAll().nextAll().show();
//});

//    $(".menu li.section-title span").each( function () {
        // On stocke le contenu du span :
//        var TexteSpan = $(this).text();
//        $(this).replaceWith('<a href="" title="Afficher le sous-menu">' + TexteSpan + '<\/a>') ;
//    } ) ;

// This is the toggle function
// first it hides all sections
$("#menu li.section-title").click(function()
{
	if (
	$(this).prev("ul.sub-section:visible").length != 0) {
    $(this).prev("ul.sub-section").hide("slow");
    }
	else {
	$("#menu ul.sub-section").hide("slow");
	$(this).prev("ul.sub-section").show("slow");
	}
// return false;
});
	
});