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