$(document).ready(function(){

	$(".shareButton .delete").click(function(){
	  $(this).parents(".box").animate({ opacity: "hide" }, "slow");
	});

});
$(document).ready(function(){

	$(".box .shareButton").click(function(){
	  $(this).next(".share-div").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});

});