	function adjustLayout()
	{

	  // Get natural heights
	  var lHeight = xHeight("right-content");
	  var rHeight = xHeight("left-content");
	  var cheight = xHeight("center-content");
	  
	  // Find the maximum height
	  var maxHeight = Math.max(cheight, Math.max(lHeight, rHeight));
	  
	  // Assign maximum height to all columns
	  xHeight("left-content", maxHeight);
	  xHeight("right-content", maxHeight);
	  xHeight("center-content", maxHeight);
	  
	  // Show the footer
	  xShow("footer");
	}
	window.onload = function()
	{
	  //xAddEventListener(window, "resize", adjustLayout, false); Fixes.. things
	  adjustLayout();
	}
