<!--
function makeHolidayMsg () {
  var holiday = new Array(
     "1",  "2", "Monday, January 2, 2012",      "New Years Day",  // 2012 Always needs to be first element in array
     "1", "16", "Monday, January 16, 2012",     "Martin Luther King Jr. Day",
     "2", "20", "Monday, February 20, 2012",    "President's Day",
     "3", "26", "Monday, March 26, 2012",       "Kuhio Day",
     "4",  "6", "Friday, April 6, 2012",        "Good Friday",
     "5", "28", "Monday, May 28, 2012",         "Memorial Day",
     "6", "11", "Monday, June 11, 2012",        "Kamehameha Day",
     "7",  "4", "Wednesday, July 4, 2012",      "Independence Day",
     "8", "17", "Friday, August 17, 2012",      "Admissions Day", 
     "9",  "3", "Monday, September 3, 2012",    "Labor Day",
    "10",  "8", "Monday, October 8, 2012",      "Discoverer's Day",
    "11", "12", "Friday, November 12, 2012",    "Veteran's Day",
    "11", "22", "Thursday, November 22, 2012",  "Thanksgiving Day",
    "12", "26", "Monday, December 26, 2011",    "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] + ".");
}
-->
