// JavaScript Document
function allinea() {
	document.getElementById('nome').style.top = window.innerHeight-80 + 'px';
	document.getElementById('nome').style.left = '4px';
	document.getElementById('menu').style.top = window.innerHeight-72 + 'px';
	document.getElementById('menu').style.left = '160px';
	document.getElementById('contenuto').style.top = window.innerHeight-document.getElementById('contenuto').offsetHeight + 'px';
	document.getElementById('contenuto').style.left = '280px';
}

window.onload = allinea;
window.onresize = allinea;
