// JavaScript Document

<!--
{
	helixtime = new Date()
	hrstime = helixtime.getHours()
	if (hrstime < 7){timemsg = "Buon Mattino! "}
	if (hrstime > 6 && hrstime <12){timemsg = "Buon Giorno! "}
	if (hrstime > 11 && hrstime <18){timemsg = "Buon Pomeriggio! "}
	if (hrstime >17){timemsg = "Buona Sera! "}
	document.write(timemsg)}
// -->

