var now = new Date();
var monthName = now.getMonth() + 1;
var dayName = now.getDay() + 1;
var dayNumber = now.getDate();
if(dayName==1) Day = "Domenica";
if(dayName==2) Day = "Luned&igrave;";
if(dayName==3) Day = "Marted&igrave;";
if(dayName==4) Day = "Mercoled&igrave;";
if(dayName==5) Day = "Gioved&igrave;";
if(dayName==6) Day = "Venerd&igrave;";
if(dayName==7) Day = "Sabato";
if(monthName==1) Month="Gennaio";
if(monthName==2) Month="Febbraio";
if(monthName==3) Month="Marzo";
if(monthName==4) Month="Aprile";
if(monthName==5) Month="Maggio";
if(monthName==6) Month="Giugno";
if(monthName==7) Month="Luglio";
if(monthName==8) Month="Agosto";
if(monthName==9) Month="Settembre";
if(monthName==10) Month="Ottobre";
if(monthName==11) Month="Novembre";
if(monthName==12) Month="Dicembre";
document.open();
document.write( " " + " " + " " + Day + " " + dayNumber + " " + Month);
Time = new Date();
CurrentTime = Time.getHours();
if (CurrentTime < 12) {
document.write(" -" + " " + "Buon giorno!");
}else{
if (CurrentTime < 18) { 
document.write(" -" + " " + "Buon pomeriggio!");
}else{ 
document.write(" -" + " " + "Buona sera!"); 
}}