jQuery(function($)
{
    $.fn.accordeonGro = function()
    {
        $('.contenu').hide();
        $('.contenu:first').show();

        $('.titre').click(function()
        {
            $('.contenu').hide();
            $(this).next('div').show();
        });

        return this;
    };
});
