$(function() {
	$('#posts-wrapper').each(function(){
		$('.blog-comment').hide();
		$('.post-comments a').click(function(e) {
			e.preventDefault();
			$(this).parent().parent().children('.blog-comment').show();
			$(this).parent().addClass('active');
			//$(this).text('Post Your Comment');
		});
   });

});
