	function window_resize () {
		var bodyHeight = GetBodyHeight ();
		SetWidthByPercentage ("DivSlogan", 100, -75);
		SetHeightByPercentage ("DivVRule", 100, 0);
		SetWidthByPercentage ("DivMainNav", 100, -50);
		SetWidthByRelativeObjects ("DivMasthead", ["DivMainNav", "DivSlogan","DivHRule", "DivBottomFeature", "DivInsideBodyContainer"], 0, 0);
		SetWidthByRelativeObjects ("DivMainNav", ["DivMasthead"], -50, 50);
		SetWidthByRelativeObjects ("DivSlogan", ["DivMasthead"], -75, 75);
		SetWidthByRelativeObjects ("DivHRule", ["DivMasthead"], 0, 0);
		SetWidthByRelativeObjects ("DivFooter", ["DivMasthead"], 0, 0);

		// Inside page
		var tempBodyHeight = bodyHeight + 100;
		var footerMarginTop = 50;
		var objH1 = GetObjRef("DivInsideBodyContainer");
		var objH2 = GetObjRef("DivLeftColumn");
		var objH3 = GetObjRef("DivInsideFooter");
		var objH4 = GetObjRef("DivInsideVRule");
		if (objH1 && objH1.offsetHeight && (tempBodyHeight < objH1.offsetHeight + 100 + footerMarginTop)) {
			tempBodyHeight = objH1.offsetHeight + 100 +footerMarginTop;
		}
		if (objH2 && objH2.offsetHeight && (tempBodyHeight < objH2.offsetHeight + 115 + footerMarginTop)) {
			tempBodyHeight = objH2.offsetHeight + 115 + footerMarginTop;
		}
		if (objH3 && objH3.style) {
			objH3.style.top = tempBodyHeight + "px";
		}
		if (objH3 && objH3.style) {
			objH3.style.top = tempBodyHeight + "px";
		}
		if (objH4 && objH4.style) {
			objH4.style.height = tempBodyHeight + "px";
		}
	}
	
	function init () {
		window.onresize = window_resize;
		window.onscroll = window_resize;
		window_resize();
		st_onload();
	}
