$(function(){
	$('a.friendship').click(function(){
		var $link = $(this)
		url = $link.attr('href');
		$.ajax({
	        url: url,
	        type: 'post',
	        dataType: 'json',
	        success: function(data) {
	            if (!data.success) {
	                alert(data.error);
	            }
	            $link.remove();
	        }
	    });
		return false;
	})
})
