
//Requirement is to make the fist column the same height as the second column IF the second column is greater
(function($) {
	$.fn.equalHeights = function() {
		var col1 = $(this).eq(0).outerHeight();
		var col2 = $(this).eq(1).outerHeight();
		if (col1 > col2){
			return;
		}
		var ht1 = $(this).eq(0).height();
		$(this).eq(0).height(ht1 + (col2 - col1)).css("overflow","auto");
	}
})(jQuery);
