// javascript
/**
* sets the height of both elements (by id) to be their max, making them the same height.
*/
function fixH(one,two) {
  if (one) {
    if(one.height() < two.height()){
      one.height(two.height())
    }
    else{
      two.height(one.height())
    }
  }
}

function equalHeight(group) {
  var tallest = 0;
  group.each(function() {
    var thisHeight = $(this).height();
    if(thisHeight > tallest) {
      tallest = thisHeight;
    }
  });
  group.each( function(){ 
    $(this).height(tallest);
  });
}

function expandLastToFillHeight(group){

}


