jQuery(function() {
    jQuery('.author').click(function() {
        var id = jQuery(this).attr('id');
        jQuery('#'+id+' .user_controls').toggle('slow');
    });
});
