﻿/*
* jQuery equalizeBottoms - v1.5 - 3/23/2010
* http://benalman.com/projects/jquery-equalizebottoms-plugin/
* 
* Copyright (c) 2010 "Cowboy" Ben Alman
* Dual licensed under the MIT and GPL licenses.
* http://benalman.com/about/license/
*/
(function ($) { $.fn.equalizeBottoms = function (a) { if (isNaN(a)) { a = 0; this.each(function () { var b = $(this).css({ height: "auto" }); a = Math.max(a, b.offset().top + b.outerHeight()) }) } return this.each(function () { var b = $(this); b.height(a - b.offset().top - b.outerHeight() + b.height()) }) } })(jQuery);
