function setPageHeight() {
	if(document.getElementById('landing_right_col_subtitle')) {
		title_height = document.getElementById('landing_right_col_title').offsetHeight;
	} else {
		title_height = 0;
	}	
	if(document.getElementById('landing_right_col_subtitle')) {
		subtitle_height = document.getElementById('landing_right_col_subtitle').offsetHeight;
	} else {
		subtitle_height = 0;
	}
	if(document.getElementById('landing_right_col_white_box_middle_content')) {
		white_box_height = document.getElementById('landing_right_col_white_box_middle_content').offsetHeight;
	} else {
		white_box_height = 0;
	}
	if(document.getElementById('landing_right_col_content')) {
		content_height = document.getElementById('landing_right_col_content').offsetHeight;
	} else {
		content_height = 0;
	}
	
	if(document.getElementById('landing_left_col')) {
		left_col_height = document.getElementById('landing_left_col').offsetHeight;
	} else {
		left_col_height = 0;
	}
	
	if(document.getElementById('landing_right_col')) {
		right_col_height = title_height + subtitle_height + white_box_height + content_height;
	} else {
		right_col_height = 0;
	}
	
	/*
	alert(left_col_height);
	alert(right_col_height);
	alert(title_height + subtitle_height + white_box_height + content_height);
	*/
	
	if((right_col_height > left_col_height) || (right_col_height == left_col_height)) {
		document.getElementById('content_outer').style.height = right_col_height + 130 + "px";
	} else if(right_col_height < left_col_height) {
		document.getElementById('content_outer').style.height = left_col_height + 50 + "px";
	}
	
	url = document.location.href;
	//alert(url);
	if(url == "http://www.smartmovesinc.com/" || url == "http://www.smartmovesinc.com/index.php") {
		document.getElementById('content_outer').style.height = 1030+"px";
	}
	if(url == "http://www.smartmovesinc.com/clients_case-studies.php" || url == "http://www.smartmovesinc.com/clients_case-studies.php#delux" || url == "http://www.smartmovesinc.com/clients_case-studies.php#harland" || url == "http://www.smartmovesinc.com/clients_case-studies.php#simon") {
		document.getElementById('content_outer').style.height = right_col_height - 300 + "px";
	}
	
	/*document.getElementById('content_outer').style.height = title_height + subtitle_height + white_box_height + content_height + 110 + "px";*/
	/*document.getElementById('content_outer').style.height = left_col_height + 50 + "px";*/
	
	/*
	if(document.getElementById('content_outer').style.height == 50+"px") {
		document.getElementById('content_outer').style.height = 1030+"px";
	}
	*/
}
