function mueveReloj() {
	meses = new Array('01','02','03','04','05','06','07','08','09','10','11','12');

	var now = new Date();
	var hora = now.getHours();
	var minuto = now.getMinutes();
	var segundo = now.getSeconds();
	var ano = now.getFullYear();	    // Returns year
	var mth = now.getMonth();    // Returns month (0-11)
	var mes = meses[mth];
	var dia = now.getDate();    // Returns day (1-31)



	if (segundo<10)
		segundo = "0" + segundo;

	if (minuto<10)
		minuto = "0" + minuto;

	if (hora<10)
		hora = "0" + hora;

	horaImprimible = dia+"/" + mes+"/" + ano+" · " + hora + ":" + minuto + ":" + segundo;

	document.getElementById("hora").innerHTML = horaImprimible;
	setTimeout("mueveReloj();",1000);
} 
			

