/*
# Equal Heights
#
# a jQuery Plugin
#
# (c) 2011 Matthias Hannig
*/(function($) {
  if ($ == null) {
    $ = jQuery;
  }
  return $.fn.equalHeights = function() {
    var maxY;
    maxY = 0;
    this.each(function() {
      if ($(this).height() > maxY) {
        return maxY = $(this).height();
      }
    });
    maxY += 5;
    return this.each(function() {
      return $(this).height(maxY);
    });
  };
})($);
