function CrearFiaDiasMenu() {
var localDate, utcTime, crOffSet;
var crStrDate, strTime;
var deboMostrar;
var strThisDate;

	crOffSet = -6.0;
	// create Date object for current location
	localDate = new Date();

	// convert to msec, add local time zone offset, get UTC time in msec
	utcTime = localDate.getTime() + (localDate.getTimezoneOffset() * 60000);

	// create new Date object for different city using supplied offset
	crDate = new Date(utcTime + (3600000 * crOffSet));

	// Se arma el string con el formato YYYYMMDD
	crStrDate = crDate.getFullYear() + LN_LZ(crDate.getMonth() + 1) + LN_LZ(crDate.getDate());

	// Fecha base 9/Abr/2008
	thisDate = new Date(2008, 3, 9);

	for (canDias = 0; canDias <= 11; canDias++) {
		if (thisDate.format('yyyymmdd') < crStrDate) {
			diaLink = 'http://www.nacion.com/ln_ee/ESPECIALES/2008/abril/fia/fia' + thisDate.format('yyyymmdd') + '.html';
			$("#fiadiasmnu ul").append("<li><a href=\"" + diaLink + "\">" + thisDate.format('dddd dd') + "</a></li>");
		} else {
			$("#fiadiasmnu ul").append("<li><span>" + thisDate.format('dddd dd') + "</span></li>");
		}

		thisDate.setDate(thisDate.getDate() + 1);
	}
}