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