function adjustLayout(){	var headiff = 62;	var lHeight = xHeight("restaurant-logo");	var rHeight = xHeight("content");	var maxHeight = Math.max(lHeight, (rHeight + headiff));	xHeight("restaurant-logo", maxHeight);	xHeight("content", (maxHeight - headiff));	xHeight("tabletopfade", (maxHeight - headiff));	var brandPHeight = xHeight("brand-photo");	var brandCHeight = xHeight("brand-content");	var maxHeight = Math.max(brandPHeight,brandCHeight);	xHeight("brand-photo", maxHeight);	xHeight("brand-content", maxHeight);}window.onload = function(){	xAddEventListener(window, "resize",		adjustLayout, false);	adjustLayout();}
