// JavaScript Document
function adjustLayout(){
	// GEt natural heights
	var cHeight = xHeight("centrecontent");
	var lHeight = xHeight("left");
	
	// Find the maximum height
	var maxHeight = Math.max(cHeight, lHeight);
	
	// Assign maximum height to all columns
	xHeight("centrecontent",maxHeight);
	xHeight("left",maxHeight);
	
}

window.onload = function(){
	xAddEventListener(window, "resize", adjustLayout, false);
	adjustLayout();
}
