/* Copyright (c) 2008 Maximus_Decimus
* Licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
* Copyright notice and license must remain intact for legal use
* jMDCorrectHeight
* Version: 1.0 (Aug 28, 2008)
* Requires: jQuery 1.2+
*/
(function($) {
	$.fn.jMDCorrectHeight = function() {
		var MaxHeight = 0;
		this.each(function(el) { 
			MaxHeight = Math.max(MaxHeight, $(this).height());
		});
		this.each(function(el) { 
			$(this).height(MaxHeight+10);
		});
	}
})(jQuery);