/* Current page Year */
var date = new Date();
var year = date.getYear();

/* Current time */
var horas=date.getHours();
var mins=date.getMinutes();
var segs=date.getSeconds();
var AMPM="am"
if (horas >  11) AMPM = "pm";
if (horas > 12) horas = horas - 12;
if (horas == 0) horas = 12;
if (mins <= 9) mins = "0" + mins;
if (segs <= 9) segs = "0" + segs;
var hora = horas +  ":"  + mins + AMPM;

/* Current date */
if( year < 1000 )
  year=year+1900;
var day=date.getDay();
var month=date.getMonth();
var daym=date.getDate();
var dayarray=new Array("Domingo","Lunes","Martes","Miercoles","Jueves","Viernes","Sabado");
var montharray=new Array("Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre");
var fecha = dayarray[day] + " " + daym + " de "  + montharray[month] + " de " + year;


