function equalHeight(group) {
	tallest = 0;
	group.each(function() {
		thisHeight = 0;
		thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
}
	
$(document).ready(function() {
	$('.entry').each(function() {
		if (!$(this).hasClass('feature')) {
			equalHeight($(this));	
		}
	});
	
});
