function ora() {
	var today = new Date();
	var h = today.getHours();
	
 	/*
	* Java numera i mesi da 0 a 11
	*/
	var month=new Array(12);
	month[0]="01";
	month[1]="02";
	month[2]="03";
	month[3]="04";
	month[4]="05";
	month[5]="06";
	month[6]="07";
	month[7]="08";
	month[8]="09";
	month[9]="10";
	month[10]="11";
	month[11]="12";

	if (h<=9) h='0'+h;
	var m= parseInt(today.getMinutes());
	if (m<=9) m='0'+m;
	var s= parseInt(today.getSeconds());
	if (s<=9) s='0'+s;

 	var gg = parseInt(today.getDate());
 	var mm = month[today.getMonth()];
 	var aa = parseInt(today.getFullYear());

	document.getElementById('hour_box').innerHTML = gg + '.' + mm + '.' + aa + ' - ' + h + ':' + m + ':' + s;

	setTimeout(ora, 1000);
}
