    
(function($) {
 
	$.fn.equalizeCols = function(){
		var height = 0;
  
		return this
			.each(function() {
				height = Math.max(height, this.offsetHeight);
			})
			.css("padding-bottom", height)
			.each(function() {
				var h = this.offsetHeight;
				if (h > height) {
					$(this).css("padding-bottom", height - (h - height));
				};
			});
			
	};
	
})(jQuery);