$(document).ready( function () { 

    $(".accordeon ul.subMenu").hide(); 

    $(".accordeon li.toggleSubMenu span").each( function () { 

        var TexteSpan = $(this).text(); 

        $(this).replaceWith('<a href="" title="Afficher l\'info" style="font-weight:bold">' + TexteSpan + '<\/a>') ; 

    } ) ; 

    $(".accordeon li.toggleSubMenu > a").click( function () { 

        if ($(this).next("ul.subMenu:visible").length != 0) { 

            $(this).next("ul.subMenu").slideUp("normal", function () { $(this).parent().removeClass("open") }); 

        } 

        else { 

            $(".accordeon ul.subMenu").slideUp("normal", function () { $(this).parent().removeClass("open") }); 

            $(this).next("ul.subMenu").slideDown("normal", function () { $(this).parent().addClass("open") }); 

        } 

        return false; 

    }); 

} ) ; 