<!-- hide from non-JS browsers



/* get current date */

var today = new Date();

var dayofweek = today.getDay();

var day = today.getDate();

var month = today.getMonth() + 1; /* offset counting from zero */

var year = today.getFullYear();



/************************************************

 * holidays are displayed as:                   *

 *                                              *

 * Memorial Day: 05/20 -> 05/31                 *

 * Flag Day:     06/14                          *

 * July 4th:     07/01 -> 07/04                 *

 * Labor Day:    first monday of sept           *

 * 9/11:         09/07 -> 09/15                 *

 * Columbus Day: second monday of Oct.          *

 * Halloween:    10/20 -> 10/31                 *

 * Veterans Day: 11/11                          *

 * Thanksgiving: 11/20 -> 11/30                 *

 * Winter Holidays:                             *

 *    Christmas:    12/01 -> 12/25              *

 *    New Year:     12/26 -> 01/01              *

 ************************************************/



/* set holiday flags */

var isMemDay = (month == 5 && (day >=25 && day <= 31))

var isFlagDay = (month == 6 && day == 14)

var isJulyFour = (month == 7 && (day >=1 && day <=4))

var isLaborDay = (month == 9 && (day <= 7 && dayofweek == 1))

var isPatDay = (month == 9 && (day >=7 && day <=15))

var isColumbusDay = (month == 10 && ((day >= 7 && day <=14) && dayofweek == 1))

var isHalloween = (month == 10 && (day >= 20 && day <= 31))

var isVetDay = (month == 11 && day == 11)

var isThanksgiving = (month == 11 && (day >= 20 && day <= 30))

var isWinterHoliday = (month == 12 || (month == 1 && day <= 1))





if (isMemDay)

   document.write("<center><img src=\"/images/holidays/memday.jpg\" alt=\"Remember Those Who Served -- Original (C)Associated Press\"></center><br>");

if (isFlagDay)

   document.write("<center><img src=\"/images/holidays/flagday.jpg\" alt=\"Flag Day\"></center><br>");

if (isJulyFour)

   document.write("<center><img src=\"/images/holidays/fourth.jpg\" alt=\"Happy Independence Day!\"></center><br>");

if (isLaborDay)

   document.write("<center><img src=\"/images/holidays/laborday.jpg\" alt=\"Happy Labor Day!\"></center><br>");

if (isPatDay)

   document.write("<center><img src=\"/images/holidays/patriot.jpg\" alt=\"Never Forget 9/11!\"></center><br>");

if (isColumbusDay)

   document.write("<center><strong>Happy Columbus Day!</strong></center><br>");

if (isHalloween)

   document.write("<center><img src=\"/images/holidays/halloween.jpg\" alt=\"Happy Halloween!\"></center><br>");

if (isVetDay)

   document.write("<center><img src=\"/images/holidays/veteransday.jpg\" alt=\"Honoring those who served this Veterans Day\"></center><br>");

if (isThanksgiving)

   document.write("<center><img src=\"/images/holidays/thanksgiving.jpg\" alt=\"Happy Thanksgiving\"></center><br>");

if (isWinterHoliday)

   document.write("<script type=\"text/javascript\" src=\"/scripts/snow/snowstorm.js\"></script><center><img src=\"/images/holidays/christmas.jpg\" alt=\"Happy Holidays\"></center><br>");



// -->


