$(document).ready(function() {
	$('a.read_more').click(function(e) {
		e.preventDefault();
		$(this).hide();
		var container = $(this).closest('.post_container').next('.post_container').removeClass('hide');
		//$(window).scrollTo(container,500);
	});
	$('a.in_the_news').click(function(e) {
		e.preventDefault();
		$(this).hide();
		var container = $(this).closest('p').next('.post_container').removeClass('hide');
		//$(window).scrollTo(container,500);
	});
});

