$(window).load(function() {
	resizeHull();
});

$(window).resize(function() { resizeHull(); });

var hull;

function resizeHull() {
	if(!hull) {
		hull = $("#InnerHull");
		footerTopStart = $(hull).offset().top;
	}

	//var footerOffset = $(footer).offset();
	//var footerHeight = $(footer).height();
	var textHeight = $("#MainText").height();
	var textOffset = $("#MainText").offset().top;
	var winHeight = $(window).height();
	//alert("top: " + textOffset + ", h: " + textHeight + ",winH: " + winHeight);

	var newHeight = Math.max(
		textOffset + textHeight + 20,
		winHeight
	);

	if(!newHeight || newHeight == Number.NaN)
		return;

	//alert(newHeight);
	$(hull).css("height", newHeight);
}
