

	function adjustLayout()
	{

	  // Get natural heights
	  var cHeight = xHeight("homepage-intro");
	  var lHeight = xHeight("homepage-upcoming-events");

	  
	  // Find the maximum height
	  var maxHeight = Math.max(lHeight, cHeight);
	  
	  // Assign maximum height to all columns
	  xHeight("homepage-intro", maxHeight);
	  xHeight("homepage-upcoming-events", maxHeight);

	  
	  // Show the footer
	  xShow("footer");
	}
	window.onload = function()
	{
	  xAddEventListener(window, "resize", adjustLayout, false);
	  adjustLayout();
	}


