$(function() {
    $('#people-list a.toggle-').click(function(e) {
        e.preventDefault();
        var $this = $(this);
        jQuery.get($this.attr('href'), null, $this.hasClass('removeStar') ?
            function() {
                $this.removeClass('removeStar').addClass('addToStar')
                     .attr('href', this.url.replace(/unfollow/, 'follow'));
                window.do_notty && do_notty();
                $this = null;
            } :
            function() {
                $this.removeClass('addToStar').addClass('removeStar')
                     .attr('href', this.url.replace(/follow/, 'unfollow'));
                window.do_notty && do_notty();
                $this = null;
            });
    });
});
