// JavaScript Document
	var currYear = (document.layers) ? eval(now.getYear()+1900) : now.getYear();
	var currMonth =eval(now.getMonth()+1)
	if (now.getHours() < 5) {
		document.write("Buona Notte")
	}
	else if (now.getHours() < 12) {
		document.write("Buon Giorno")
	}
	else if (now.getHours() < 17) {
		document.write("Buon Pomeriggio")
	}
	else {
		document.write("Buona Serata")
	}
document.write(" - Oggi &egrave; " + dayName[now.getDay()] + " " + now.getDate() + " " + monName[now.getMonth()] + " " + now.getFullYear())
