/**
* @requires jQuery
* Justify columns
*/
jQuery.fn.justifyTeaserGroup = function() {
	jQuery(this).each(function(){
		var maxHeight = 0;
		// Get the height of the highest element
		jQuery(".m-c", this).each(function(){
			var height;
			jQuery(this).css('min-height','0');
			height = jQuery(this).height() + jQuery(this).siblings(".m-h").height();
			if (height > maxHeight) {
				maxHeight = height;
			}
		});
		// Set min-height for all elements
		jQuery(".m-c", this).each(function(){
			var newHeight = maxHeight - jQuery(this).siblings(".m-h").height();
			jQuery(this).css('min-height',newHeight + 'px');
		});
	});
	return this;
};
