function adjustLayout()
{
	// Get natural heights
	var Height1 = xHeight("leftcol");
	var Height2 = xHeight("articlefeatures");
	var Height3 = xHeight("content");
	var Height4 = xHeight("crumb");

	// Find the maximum height
	var maxHeight =
		Math.max(Height1, Math.max(Height2, Height3));
		
	// Subtract height of crumb div
	var rightHeight = (maxHeight - Height4);

	// Assign maximum height to left column
	xHeight("leftcol", maxHeight);
	xHeight("content", maxHeight);
	
}

window.onload = function()
{
	xAddEventListener(window, "resize", adjustLayout, false);
	adjustLayout();
}
