(function($) {

	$.fn.equalise = function() {
	
		return this.each(function() {
			
			var tallest = 0;
			
			$(this).each(function() {
			
				$(this).find('> div').each(function() {
					tallest = ($(this).height() > tallest) ? $(this).height() : tallest;
				});
				
			});
			
			$(this).css({
				height: tallest
			});
		
		});
		
	};

})(jQuery);
