function adjustLayout()
{
	// Get natural heights
	//var mlHeight = xHeight("menu-left");
	var cHeight = xHeight("content");
	var mHeight = xHeight("middle");
	var rHeight = xHeight("right");
	var tHeight = xHeight("top"); // w tym wypadku menu z top jest wyswietlane po lewej
	var mgHeight = xHeight("main-gfx");

	// Find the maximum height
	var maxHeight = Math.max( /*mlHeight,*/ cHeight, mHeight, rHeight, tHeight, mgHeight );
	
	// Assign maximum height to all columns
	//xHeight("menu-left", maxHeight);
	xHeight("content", maxHeight);
	xHeight("middle", maxHeight);
	xHeight("right", maxHeight);
	xHeight("top", maxHeight);
	xHeight("top", maxHeight);
	
	// Show the footer
	xShow("footer");
}
window.onload = function()
{
	//xAddEventListener(window, "resize", adjustLayout, false);
	adjustLayout();
}
