// follow
$(function() {
	$("body").delegate("a.follow", "click", function(){
		var uid = $(this).attr('uid');
		$.ajax({
			type: 'POST',
			url: 'ajax/follow.php',
			dataType: 'json',
			data: {action:'follow', uid:uid},
			success: function(){
				$('div.follow[uid="'+uid+'"]').hide();
				$('div.unfollow[uid="'+uid+'"]').fadeIn();
			}
		});
	});

	$("body").delegate("a.unfollow", "click", function(){
		var uid = $(this).attr('uid');
		$.ajax({
			type: 'POST',
			url: 'ajax/follow.php',
			dataType: 'json',
			data: {action:'unfollow', uid:uid},
			success: function(){
				$('div.follow[uid="'+uid+'"]').fadeIn();
				$('div.unfollow[uid="'+uid+'"]').hide();
			}
		});
	});
});

