

$(document).ready(function(){



	$(".post-content .share").click(function(){

	  $(this).next("div").slideToggle("slow");

		$(this).toggleClass("active"); return false;

	});



});