/*# AVOID COLLISIONS #*/
(function($){
    /*# AVOID COLLISIONS #*/

    $('li:not(.selected) .deroulant-div').addClass('hide');

    $(".deroulant-a").click( function(event) { 
        if ($(this).next(".deroulant-div").hasClass('hide')) {
            $(this).next(".deroulant-div").removeClass('hide');
        } else {
            $(this).next('.deroulant-div').addClass('hide');
        }
        // On empêche le navigateur de suivre le lien :
        return false;
    });
/*# AVOID COLLISIONS #*/
})(jQuery);
/*# AVOID COLLISIONS #*/
