/*
* jQuery Equalize Height 0.1
* Copyright (c) 2010 Simon Ertel (simonertel.net)
* Licensed under the MIT LICENSE
*/
(function($){
  $.fn.equalizeHeight = function(){
    var maxHeight = 0;
    return this.each(function(i){
      if ($(this).height() > maxHeight) {
        maxHeight = $(this).height();
      }
    })
    .height(maxHeight);
  };
})(jQuery);
