jQuery(function($){
	$('.delete-post-link').click(function(e){
		e.preventDefault();
		if(confirm("Are you sure you want to delete this?")){
			var u = this.href;
			$.ajax({
				url: u, 
				type: 'POST', 
				data: {_method: 'delete'}, 
				success: function(data) {
					post = uie.utils.evalJson(data);
					$('#post-'+post.id).fadeOut('slow');
				}
			});
		}
	});
});