function adjustLayout()
{
	if (1==1) {
	  // Get natural heights
	  var innerHeight = xHeight("innerShadowDiv");
	  var outerHeight = xHeight("outerShadowDiv");
	  var containerHeight = xHeight("contentSectionDiv");
	
	  // Find the maximum height
	  var maxHeight =
	    Math.max(innerHeight, Math.max(outerHeight,containerHeight));
	
	  // Assign maximum height to all columns
	  xHeight("innerShadowDiv", maxHeight);
	  xHeight("outerShadowDiv", maxHeight);
	  xHeight("contentSectionDiv", maxHeight);
	  
	}
}



