function fecha() {
	dat = new Date();
	month = dat.getMonth();
	monthname = new Array();
	monthname[0] = "enero";
	monthname[1] = "febrero";
	monthname[2] = "marzo";
	monthname[3] = "abril";
	monthname[4] = "mayo";
	monthname[5] = "junio";
	monthname[6] = "julio";
	monthname[7] = "agosto";
	monthname[8] = "septiembre";
	monthname[9] = "octubre";
	monthname[10] = "noviembre";
	monthname[11] = "diciembre";
	day = dat.getDate();
	year = dat.getFullYear();
	document.write('<span class="topNavGray">' + day + ' de '
			+ monthname[month] + ' de ' + year + '</span>');
}