<!--
function makeHolidayMsg () {
  var holiday = new Array(
     "1",  "1", "Friday, January 1, 2010",      "New Years Day",  // 2010 Always needs to be first element in array
     "1", "18", "Monday, January 18, 2010",     "Martin Luther King, Jr. Day",
     "2", "15", "Monday, February 15, 2010",    "President's Day",
     "3", "26", "Friday, March 26, 2010",       "Kuhio Day",
     "4",  "2", "Friday, April 2, 2010",        "Good Friday",
     "5", "31", "Monday, May 31, 2010",         "Memorial Day",
     "6", "11", "Friday, June 11, 2010",        "Kamehameha Day",
     "7",  "5", "Monday, July 5, 2010",         "Independence Day",
     "8", "20", "Friday, August 20, 2010",      "Statehood Day",  // 2010
     "9",  "6", "Monday, September 6, 2010",    "Labor Day",
    "10", "11", "Monday, October 11, 2010",     "Columbus Day",
    "11", "11", "Thursday, November 11, 2010",  "Veteran's Day",
    "11", "25", "Thursday, November 25, 2010",  "Thanksgiving Day",
    "12", "24", "Friday, December 24, 2010",    "Christmas Day"
  );

  var now = new Date();
  var currentMonth = now.getMonth() + 1;
  var currentDate  = now.getDate();
  //document.write (now + "<br>");
  document.write ("<span style=\"font-size: 14px; font-weight: bold;\">");
  for (var i = 0; i < holiday.length; i++) {
    if ((currentMonth == holiday [i] && currentDate <= holiday [i+1]) || currentMonth < holiday [i]) {
      document.write ("<a href='/AboutUs/holidaySchedule.html' style='color: black; text-decoration: none;'>" + holiday[i+3] + " Holiday</a></span><br>");
      document.write ("The credit union will be closed on  " + holiday[i+2] + ".");
      return;
    }
    i = i + 3;
  }
  // case where next holiday is New Years Day
  document.write ("<a href='/AboutUs/holidaySchedule.html' style='color: black; text-decoration: none;'>" + holiday[3] + " Holiday</a></span><br>"); 
  document.write ("The credit union will be closed on  " + holiday[2] + ".");
}
-->