// Courtesy of SimplytheBest.net (http://simplythebest.net/info/dhtml_scripts.html)
function makeArray(n) {
this.length = n
return this
}
monthNames = new makeArray(12)
monthNames[1] = "Gennaio"
monthNames[2] = "Febbraio"
monthNames[3] = "Marzo"
monthNames[4] = "Aprile"
monthNames[5] = "Maggio"
monthNames[6] = "Giugno"
monthNames[7] = "Luglio"
monthNames[8] = "Agosto"
monthNames[9] = "Settembre"
monthNames[10] = "Ottobre"
monthNames[11] = "Novembre"
monthNames[12] = "Dicembre"
function dateString(oneDate) {
var theMonth = monthNames[oneDate.getMonth() + 1]
var theYear = oneDate.getFullYear()
return oneDate.getDate()+ " "  + theMonth + " " + theYear
}

