$(function(){  
  /** Bottom Boxes **/
  $('#bottom-content').each(function(){
  	// Make all gutter boxes the same height
    var maxHeight = 0;
    $('.bottom-box-top').each(function(){
        // Correct for extra padding of blog
    	var myHeight = $(this).height();
    	if(myHeight > maxHeight){
    		maxHeight = myHeight;
    	}
    });
    $('.bottom-box-top').each(function(){        
    	$(this).animate({'height':maxHeight});
    });
  });
});
