
var theDate = new Date();
var theMonth = theDate.getMonth();
var theDay = theDate.getDate();
var theYear = theDate.getYear();
var theWeekday = theDate.getDay();

if(theWeekday == 0)      day = " Dom "    
else if(theWeekday == 1) day = " Lun "
else if(theWeekday == 2) day = " Mar "   
else if(theWeekday == 3) day = " Mer "   
else if(theWeekday == 4) day = " Gio "
else if(theWeekday == 5) day = " Ven "
else if(theWeekday == 6) day = " Sab "

theMonth = theMonth+1
if ( theMonth == "1") theMonth = "Gennaio"; 
if ( theMonth == "2") theMonth = "Febbraio";
if ( theMonth == "3") theMonth = "Marzo"; 
if ( theMonth == "4") theMonth = "Aprile";
if ( theMonth == "5") theMonth = "Maggio"; 
if ( theMonth == "6") theMonth = "Giugno";
if ( theMonth == "7") theMonth = "Luglio"; 
if ( theMonth == "8") theMonth = "Agosto";
if ( theMonth == "9") theMonth = "Settembre"; 
if ( theMonth == "10") theMonth = "Ottobre";
if ( theMonth == "11") theMonth = "Novembre";
if ( theMonth == "12") theMonth = "Dicembre";

document.write(day + theDay +" " +theMonth +" "+ theYear);
