Calendar._DN = new Array
("Sunday",
 "Monday",
 "Tuesday",
 "Wednesday",
 "Thursday",
 "Friday",
 "Saturday",
 "Sunday");

Calendar._MN = new Array
("January",
 "February",
 "March",
 "April",
 "May",
 "June",
 "July",
 "August",
 "September",
 "October",
 "November",
 "December");

// short month names
Calendar._SMN = new Array
("Jan",
 "Feb",
 "Mar",
 "Apr",
 "May",
 "Jun",
 "Jul",
 "Aug",
 "Sep",
 "Oct",
 "Nov",
 "Dec");

// tooltips
Calendar._TT = {};
Calendar._TT["INFO"] = "About the calendar";

Calendar._TT["ABOUT"] =
"Select the date:\n" +
"- Use the buttons \xab, \xbb for selecting the year\n" +
"- Use the buttons " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + "for selecting the motnh\n"

Calendar._TT["ABOUT_TIME"] = "";

Calendar._TT["TOGGLE"] = "Modify the first day of the week";
Calendar._TT["PREV_YEAR"] = "Perv. year (keep pressed for the menu)";
Calendar._TT["PREV_MONTH"] = "Prev. month (keep pressed for the menu)";
Calendar._TT["GO_TODAY"] = "Vai a oggi";
Calendar._TT["NEXT_MONTH"] = "Next month (keep pressed for the menu)";
Calendar._TT["NEXT_YEAR"] = "Next year (keep pressed for the menu)";
Calendar._TT["SEL_DATE"] = "Select the date";
Calendar._TT["DRAG_TO_MOVE"] = "Drag to move";
Calendar._TT["PART_TODAY"] = " (today)";
Calendar._TT["DAY_FIRST"] = "First day %s";
Calendar._TT["WEEKEND"] = "0,6";
Calendar._TT["CLOSE"] = "Close";
Calendar._TT["TODAY"] = "Today";

// date formats
Calendar._TT["DEF_DATE_FORMAT"] = "%d-%m-%Y";
Calendar._TT["TT_DATE_FORMAT"] = "%a, %e %b ";

Calendar._TT["WK"] = "Set";

