$(document).ready(function(){
	$('.follow-user').click(function(){
		url = $(this).attr('href');
		$(this).after("<div class='ajax-spinner'><img src='/static/images/loading-white.gif' alt='' style='float: right;' /></div>");
		$.get(url, { noredirect: 1 },
			function(data){
				$('.follow-user').replaceWith("<a class='forum-label follow-user'><em>Friend Added</em></a>");
				$('.ajax-spinner').remove();
			}
		,'text');
		return false;
	})
});