	// MAKE ALL POST BOXES THE SAME HEIGHT
jQuery(document).ready(function($) {
	var tallest = 0;
	$('.news-post h6').each(function(){
		if($(this).height() > tallest) {
			tallest = $(this).height();
		}
	});
	$('.news-post h6').height(tallest);


	var tallest = 0;
	$('.news-post p').each(function(){
		if($(this).height() > tallest) {
			tallest = $(this).height();
		}
	});
	$('.news-post p').height(tallest);
	

	//if($('#column13').height() > $('#column23').height()) $('#column23').height($('#column13').height());

});

