jQuery.fn.make_same_height = function () {
		
	var max = -1;
		
	this.each(function() {
		
		$this = $(this);
		$this.css('height', 'auto');
		
		var fullheight = $this.height() +
		parseInt($this.css('padding-top')) +
		parseInt($this.css('padding-bottom'));
		
		max = max < fullheight ? fullheight : max;
		
	});
	$(this).each(function () {
		
		var padd = parseInt($(this).css('padding-top')) + parseInt($(this).css('padding-bottom'));
		
		$(this).height(max - padd);
	});
}
$(function() {
	$('.row > .box > div.box-cnt').make_same_height();
})
