/* Fix Layout
 * Cleans up the layout where CSS cannot, ensuring columns remain the same height
 */

$(function () { 
	var height_col1 = $('#leftColumn').height();
	var height_col2 = $('#rightColumn').height();
	
	var max_height = Math.max(height_col1, height_col2);
	$('#leftColumn, #rightColumn').height(max_height);
});


