var boxesAdjusted = false;
function matchBoxes() {
	if (boxesAdjusted) return;
	
	var diff = Math.max(
		($('.content-main').height() - $('.content-right').height()),
		($('.content-left').height() - $('.content-mid').height())
	);
	if (diff > 0) {
		boxesAdjusted = true;
		// adjust why buy box
		var offersDiff = $('#offerSlideshow').height() - $('#why-choose').height();
		if (offersDiff > 0) {
			$('#why-choose .contents').css('padding-bottom', (parseInt($('#why-choose .contents').css('padding-bottom')) + Math.floor(offersDiff / 2)) + 'px');
			$('#why-choose .contents').css('padding-top', (parseInt($('#why-choose .contents').css('padding-top')) + Math.round(offersDiff / 2)) + 'px');
		}
		// adjust mid/left columns
		var midDiff = $('.content-mid').outerHeight(true) - $('.content-left').outerHeight(true);
		if (midDiff > 0) {
			$('#experts-testimonials').height($('#experts-testimonials').height() + midDiff);
		}
		// adjust right column
		var rightDiff = $('.content-main').outerHeight(true) - $('.content-right').outerHeight(true);
		if (rightDiff > 0) {
			$('#hot-deals-by-destination').height($('#hot-deals-by-destination').height() + rightDiff);
		}
	}
}
