	function adjustLayout()
	{

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