;(function($){
  $.fn.equalize = function()
  {
    var heights = [], maxHeight = 0;
    $(this).each(function(){
      heights.push($(this).height());
    });
    
    maxHeight = Math.max.apply(Math, heights);
    $(this).each(function(){
      $(this).height(maxHeight);
    });
  }
})(jQuery);


$(document).ready(function(){
  $('#col-left, #col-right').equalize();
  
  $('#col-left').css('position','relative');
  $('#col-left > div').css({
    position: 'absolute',
    width: '375px',
    left: '-20px',
    bottom: 0
  });
  
  $('div#col-left div.figure').css('width','375px');
});