$(document).ready(function(){

	$(".post .hide").click(function(){
	  $(this).parents(".post").animate({ opacity: "hide" }, "very slow");
	});

});
