$(function(){
	
	if ($("#column-left").hasClass("single-column") == false && $("#column-left").hasClass("reservation") == false) {
	
		var content_height = $("#column-left").height();
		
		if ($("#column-right").height() > content_height) {
			content_height = $("#column-right").height();
		}
		if (688 > content_height) {
			content_height = 688;
		}
		
		$("#content-columns").height(content_height);
		
	}
	
});