// (c) 2008 mauro gallo web creations

window.onload = init;
window.onresize = resize;
window.onscroll = scrollBanner;

function init() {
	updClock();
	bodyHeight();
	initXmlHttp();
	liveMenu("home");
	updCounter();
	fotoGallery("sp4", 0, "sp4");
	setTimeout(showBanner, 2000);
}	

function resize() {
	bodyHeight();
	scrollBanner();
}

function bodyHeight() {
	var altezzaClient = 0;
	if (window.innerHeight) {
		altezzaClient = window.innerHeight;
	}
	else {
		altezzaClient = document.documentElement.clientHeight;
	}
	var altezzaBody = altezzaClient - 430;
	if (altezzaBody < 400)
		altezzaBody = 400;
	var bodyDoc = document.getElementById("bodyDoc");
	bodyDoc.style.height = altezzaBody + "px";
	var bD1 = document.getElementById("bD1");
	bD1.style.height = altezzaBody + "px";
	var menu = document.getElementById("menu");
	menu.style.height = altezzaBody + "px";
	var logoBaka = document.getElementById("logoBaka");
	logoBaka.style.paddingTop = ((altezzaBody - 300) / 2) + "px";
	var wall = document.getElementById("locandineWall");
	wall.style.height = altezzaBody + "px";
	var locandine = document.getElementById("locandine");
	locandine.style.height = altezzaBody + "px";
}