function equalColumn(){
	middle_col_height = document.getElementById("middle_container").offsetHeight;
	document.getElementById("left_column").style.height = middle_col_height+"px";
	document.getElementById("center_column").style.height = middle_col_height+"px";
	document.getElementById("right_column").style.height = middle_col_height+"px";	
}