// (c) copyright 2009 mauro gallo web creations

window.onload = init;
window.onresize = textHeight;

function init() {
	updClock();
	textHeight();
	initXmlHttp();
	liveMenu("storia");
	updCounter();
}

function textHeight() {
	var altezzaClient = 0;
	if (window.innerHeight) {
		altezzaClient = window.innerHeight;
	}
	else {
		altezzaClient = document.documentElement.clientHeight;
	}
	var heightText = altezzaClient - 300;
	if (heightText < 350)
		heightText = 350;
	var text = document.getElementById("text");
	text.style.paddingRight = "20px";
	var textScroll = document.getElementById("scroll");
	textScroll.style.height = heightText + "px";
	var menu = document.getElementById("menu");
	menu.style.height = (heightText + 20) + "px";
}