/*--------------------------------------------------------------------
 * JQuery Plugin: "EqualHeights"
 * by: Scott Jehl, Todd Parker, Maggie Costello Wachs (http://www.filamentgroup.com)
 * massacred by: Yohan Blain
 *
 * Copyright (c) 2008 Filament Group
 * Licensed under GPL (http://www.opensource.org/licenses/gpl-license.php)
--------------------------------------------------------------------*/

(function($) {
  $.fn.equalHeights = function()
  {
    var current_tallest = 0;
    $(this).each(function()
    {
      if($(this).height() > current_tallest)
        current_tallest = $(this).height();
    });
    $(this).height(current_tallest);
    return this;
  };
})(jQuery);

