function adjustLayout() 
{ 
	// Get natural heights 
	var cHeight = xHeight("gamebody_recent"); 
	var lHeight = xHeight("gamebody_popular"); 
	var rHeight = xHeight("ftdbody"); 
	
	// Find the maximum height 
	var maxHeight = Math.max(cHeight, Math.max(lHeight, rHeight)); 
	 
	// Assign maximum height to all columns 
	xHeight("gamebody_recent", maxHeight); 
	xHeight("gamebody_popular", maxHeight); 
	xHeight("ftdbody",  (maxHeight - 166));
	 
	// Show the footer 
	xShow("footer"); 
}
