// JavaScript Document

// This script will display a website announcement at the top of the Home and News & Events pages:
// Set the "expireDate" variable to Show or Hide the announcement 

/*   Announcement Message   */

var today = new Date();
var expireDate = new Date("6/14/2006");
expireDate.setHours(23,59,59,999)
if (today<=expireDate) {
   
  var announcementHdr=  "Saturday, December 9, 2007";
  var announcementMsg=   "";
  var announcementSmall= "<b>All classes and activities will be held as scheduled.</b>";
  
  document.write('<div class="announceBox">');
  document.write('<span class="announceHdr">'+announcementHdr+'</span><br />');
  document.write('<span class="announceMsg">'+announcementMsg+'</span><br />');
  document.write('<span class="announceSmall">'+announcementSmall+'</span>');
  document.write('</div>');
}
