// JavaScript Document

var isnMonth = new Array("Gennaio","Febbraio","MArzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre");
var isnDay = new Array("Domenica","Lunedi","Martedi","Mercoledi","Giovedi","Venerdi","Sabato","Domenica");
var today = new Date() ;
var Year = today.getYear();
if (Year < 1000)
	Year+=1900
var Date = today.getDate();

startList = function() {

if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}

	document.getElementById("siteDate").innerHTML = isnDay[today.getDay()]+ ", " +Date+ " " + isnMonth[today.getMonth()] + " " + Year + ""



}


window.onload=startList;

<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->