// JavaScript Document
function showClock(){
if (!document.getElementById)
return

	var monthes = ["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre"];
	var date=new Date();
	var hours=date.getHours();
	var minutes=date.getMinutes();
	var seconds=date.getSeconds();
	var year = date.getFullYear();
	var day = date.getDate();
	var month = date.getMonth();
	
	var dn=""
	if (hours<24)
		dn=""
	//if (hours>12)
		//hours=hours-12
	//if (hours==0)
		//hours=12
	
	 if (minutes<=9)
	 minutes="0"+minutes
	 if (seconds<=9)
	 seconds="0"+seconds
	myclock= day + " " + monthes[month] + " " + year + " " + hours+":"+minutes+":" +seconds+" "+dn+"</b>"
	if (document.getElementById)
	{
		document.getElementById("clock").innerHTML=myclock
		setTimeout("showClock()",1000)
	 }
}
window.onload=showClock
