jQuery.noConflict();
(function($) {
        $(document).ready( function () {
                $("div.item").not(":first").hide();
                $("div.themes-dintervention h3 > a").click( function () {
                        if ($(this).parent().next("div.item:visible").length != 0) {
                                $(this).parent().next("div.item").slideUp("slow");
                        }
                        else {
                                $("div.item").slideUp("slow");
                                $(this).parent().next("div.item").slideDown("slow");
                        }
                        return false;
                });
        } ) ;
})(jQuery);