$(document).ready(function(){

	$(".post-wrap .delete").click(function(){
	  $(this).parents(".post-wrap").animate({ opacity: "hide" }, "slow");
	});

});