function addHeight(group, amount) {
   group.each(function() {
      thisHeight = $(this).height();
			thisHeight += amount;
			$(this).height(thisHeight);
   });
}


/* front page equal height stuff */
function equalHeight(group, amount) {
   tallest = 0;
   group.each(function() {
      thisHeight = $(this).height();
			
			thisHeight += amount; 
			
      if(thisHeight > tallest) {
         tallest = thisHeight;
      }
   });
   group.height(tallest);
}


$(document).ready(function() {
	addHeight($(".front_page_posts .entry-summary"), 20);
	equalHeight($(".front_page_posts .entry-meta"), 10);
  equalHeight($(".front_page_posts"), 60);
});
