$(document).ready(function(ev) {
	var l_h = $('#left_column').height()
	var c_h = $('#center_column').height();
	
	if (c_h < l_h - 184 - 35) {
		$('#center_column').height(l_h - 184 - 35);
	}
	
});
