
  function equalHeight(group) {
  var tallest = 0;
  $.each(group, function() {
    var thisHeight = this.height();
    if(thisHeight > tallest) {
      tallest = thisHeight;
    }
  });
    $.each(group, function() {$(this).css("height", tallest + 'px');});
    
    
}


