jQuery.noConflict();
(function($) {
        $(document).ready( function () {
                $(".item .plus-dinfos > a").click( function () {
                        if ($(this).parent().parent().next(".description:visible").length != 0) {
                                $(this).parent().parent().next(".description").hide("slow");
								$(this).removeClass();
                        }
                        else {
                                $(".description").hide("slow");
                                $(this).parent().parent().next(".description").show("slow");
								$(".item .plus-dinfos > a").removeClass();
								$(this).addClass("deroule");
                        }
                        return false;
                });
        } ) ;
})(jQuery);