oracorrente = new Date
	if (oracorrente.getHours() < 5) {
		document.write("Buona sera,")
	}
	else if (oracorrente.getHours() < 12) {
		document.write("Buon giorno,")
	}
	else if (oracorrente.getHours() < 17) {
		document.write("Buon pomeriggio,")
	}
	else {
		document.write("Buona sera")
	}