(function($){
	$.fn.equalHeight = function() {
		var _this = $(this);
		var _maxHeight = 0;
		_this.each(function(){
			_maxHeight = Math.max($(this).height(), _maxHeight);
		});
	 
		if($.browser.msie && $.browser.version <= 6) {
			_this.height(_maxHeight); 
		}
		_this.css({'min-height': _maxHeight});
		return this;
	};
})(jQuery);