$(document).ready(function() {


$('div#container.home div#content div.section').each(function(index, section){
	var biggest_post = 0;
	$(section).find('div.post').each(function(){
		if($(this).height() > biggest_post)
			biggest_post = $(this).height();
	});
	
	$(section).find('div.post').each(function(){
		if($(this).height() < biggest_post){
			var entry_height = $(this).find('div.entry').height( ) + (biggest_post - $(this).height());
			$(this).find('div.entry').height( entry_height );
		}
	});
	
});

});