jQuery.fn.jHeights = function() {
  var tallest = 0;
  $(this).children().css('min-height','0px'); //Fix to reset min-height
  this.children().each(function(){
    if ($(this).outerHeight() > tallest) {
      tallest = $(this).outerHeight(); 
    }
  });
  //$(this).children().height(tallest);
  $(this).children().css('min-height',tallest+'px');
};


