$(document).ready(function() {
	var thinLeft = $('.thin-box-left .box-height').outerHeight();
	var thinRight = $('.thin-box-right .box-content').outerHeight();
	
	console.log(thinLeft, thinRight );
	if ( thinLeft != thinRight || thinRight != thinLeft ) {
		if ( thinLeft < thinRight ) {
			$('.thin-box-left .box-height').css("height",thinRight);
		} else if ( thinRight < thinLeft ) {
			$('.thin-box-right .box-content').css("height",thinLeft);
		}
	}
	$('.thin-box-right .box-content').css("height",thinLeft);
});
