 $(document).ready(function(){

    $("ul.menu02 ul:not('.open_at_load')").hide();
	
	$("span.pl").each(function() {
		var TexteSpan = $(this).text();
		$(this).replaceWith('<a href="#" class="plus" title="Afficher ou masquer le sous-menu : '+TexteSpan+'."><span>'+TexteSpan+'</span></a>');
		});
	$("span.mo").each(function() {
		var TexteSpan = $(this).text();
		$(this).replaceWith('<a href="#" class="moins" title="Afficher ou masquer le sous-menu: '+TexteSpan+'."><span>'+TexteSpan+'</span></a>');
		});

    $("ul.menu02 li a").click(function(){
        $(this).parent().children("ul").not(".matched").addClass("montre").slideToggle("fast");
        $(this).parent().parent().children("li").find("ul.matched").removeClass("matched");
		
		if ($(this).attr("class") == "plus" || $(this).attr("class") == "moins") {
			if ($(this).attr("class") == "plus" ){
				$(this).removeClass();
				$(this).addClass("moins");
			}else{
				$(this).removeClass().addClass("plus");
			}
		}
        if ($(this).attr("href") == "#") {
            return false;
        }
    });

    });
