function dia_de_semana (d1,d2,d3,d4,d5,d6,d7) {
this[0]=d1;
this[1]=d2;
this[2]=d3;
this[3]=d4;
this[4]=d5;
this[5]=d6;
this[6]=d7;
}

function mes_del_anio (d1,d2,d3,d4,d5,d6,d7,d8,d9,d10,d11,d12) {
this[0]=d1;
this[1]=d2;
this[2]=d3;
this[3]=d4;
this[4]=d5;
this[5]=d6;
this[6]=d7;
this[7]=d8;
this[8]=d9;
this[9]=d10;
this[10]=d11;
this[11]=d12;
}

var semana = new dia_de_semana ("Domingo","Lunes","Martes","Miércoles","Jueves","Viernes","Sábado");
var mes = new mes_del_anio ("enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre");

var today= new Date();
var diahoy = today.getDay();
var fechahoy = today.getDate();
var meshoy = today.getMonth();
//var anio = today.getYear();
var anio = today.getFullYear();


function dia () {
	//return semana[diahoy]+', '+fechahoy+' de '+mes[meshoy]+' del '+anio;
	return fechahoy+' de '+mes[meshoy]+' del '+anio;
}


