

function matchLayoutWithContent() {

	// #bookingPanel.top = -670px
	// need to add 20px border
	// grand total = 650
	var calculatedHeight = $('#contentRight').innerHeight() - 650;
	$('#layoutRight').height(calculatedHeight);
	
	if(isIE6) {
		var margin = -($('#layoutRight').height() - ($('#contentRight').height() - 650));
		$('#layoutRight').css('margin-bottom', margin);
	}
	
}
