function adjustHome() {
	var baseH = getHeight("locales") + getHeight("head") + getHeight("date") + getHeight("main_menu_base") + 1;
	var rightColH = baseH + getHeight("right_column");
	var contentH = baseH + getHeight("home_splash");
	if (exist("home_promo")) contentH += getHeight("home_promo");
			
	setTop("home_news", contentH);
	setDisplay("home_news", "block");

	setTop("home_rassegna", contentH);
	setDisplay("home_rassegna", "block");
				
	contentH += Math.max(getHeight("home_news"), getHeight("home_rassegna"));
				
	var footerTop = rightColH;
				
	if ((rightColH + 7) < contentH) {
		setTop("right_column_footer", rightColH);
		setHeight("right_column_footer", (contentH - rightColH - 7));
		setDisplay("right_column_footer", "block");
		footerTop = contentH;
	}

	setTop("footer", footerTop);
	setDisplay("footer", "block");

}
