// full day names
Calendar._DN = new Array
("Domingo",
 "Lunes",
 "Martes",
 "Mircoles",
 "Jueves",
 "Viernes",
 "Sbado",
 "Domingo");

// short day names
Calendar._SDN = new Array
("D",
 "L",
 "M",
 "M",
 "J",
 "V",
 "S",
 "D");

// First day of the week. "0" means display Sunday first, "1" means display
// Monday first, etc.
Calendar._FD = 0;

// full month names
Calendar._MN = new Array
("Enero",
 "Febrero",
 "Marzo",
 "Abril",
 "Mayo",
 "Junio",
 "Julio",
 "Agosto",
 "Septiembre",
 "Octubre",
 "Noviembre",
 "Diciembre");

// short month names
Calendar._SMN = new Array
("Ene",
 "Feb",
 "Mar",
 "Abr",
 "May",
 "Jun",
 "Jul",
 "Ago",
 "Sep",
 "Oct",
 "Nov",
 "Dic");

// tooltips
Calendar._TT = {};
Calendar._TT["INFO"] = "";

Calendar._TT["ABOUT"] = "";

Calendar._TT["PREV_YEAR"] = "";
Calendar._TT["PREV_MONTH"] = "";
Calendar._TT["GO_TODAY"] = "";
Calendar._TT["NEXT_MONTH"] = "";
Calendar._TT["NEXT_YEAR"] = "";
Calendar._TT["SEL_DATE"] = " ";
Calendar._TT["DRAG_TO_MOVE"] = "";
Calendar._TT["PART_TODAY"] = "";

// the following is to inform that "%s" is to be the first day of week
// %s will be replaced with the day name.
Calendar._TT["DAY_FIRST"] = "";

// This may be locale-dependent.  It specifies the week-end days, as an array
// of comma-separated numbers.  The numbers are from 0 to 6: 0 means Sunday, 1
// means Monday, etc.
Calendar._TT["WEEKEND"] = "0,6";

Calendar._TT["CLOSE"] = "";
Calendar._TT["TODAY"] = "";
Calendar._TT["TIME_PART"] = "";

// date formats
Calendar._TT["DEF_DATE_FORMAT"] = "%d/%m/%Y";
Calendar._TT["TT_DATE_FORMAT"] = "%A,";

Calendar._TT["WK"] = "sem";
Calendar._TT["TIME"] = "Hora:";
