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

document.write( theDay + "&nbsp;");

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( theMonth + "&nbsp;" );

document.write( "2012" );


