$(function () { 
		var height_lca = $('.leftContentArea').height();
		var height_rca = $('.rightContentArea').height();

		var max_height = Math.max(height_lca, height_rca);
		$('.leftContentArea, .rightContentArea').height(max_height);
});
