jQuery(function() {
    $("a.reject, a.accept").click(function() {
        $(this).parents('dl:first').fadeOut('fast', function() {
            $(this).remove();

            if ($('div.vcards dl').length == 0) {
                $('div.vcards p:first').fadeIn('fast');
            }
        });
    });

    $('.user-banned').closest('dl').css('opacity', 0.5);
});
