//
// alerts_list.js
//
// Table that contains the dates for alerts to be shown
// (c) Paul Nicholson 2005-2008
//

////////////////////////////////////////////////////
////////Code for out of date browser check from http://www.browser-update.org/#install
////////////////////////////////////

//var $buoop = { } 
//$buoop.ol = window.onload; 
//window.onload=function(){ 
// if ($buoop.ol) $buoop.ol(); 
// var e = document.createElement("script"); 
// e.setAttribute("type", "text/javascript"); 
// e.setAttribute("src", "http://browser-update.org/update.js"); 
// document.body.appendChild(e); 
//} 


////////////////////////////////////////////////////





var alert_events = new Array(
//
// data format = mm / dd / yyyy
// test dates
//
//new Array("04/24/2009" , "Today test message"),
//new Array("04/25/2009" , "Tomorrow test message"),
//new Array("04/26/2009" , "Later2 test message"),
//new Array("04/27/2009" , "Later3 test message"),
//new Array("04/28/2009" , "Later4 test message"),
//new Array("04/29/2009" , "Later5 test message"),
//new Array("04/30/2009" , "Later6 test message"),
//new Array("05/01/2009" , "Later7 test message"),
//new Array("05/02/2009" , "Later8 test message"),
//new Array("05/03/2009" , "Later9 test message"),
//new Array("05/04/2009" , "Later10 test message"),
//new Array("05/05/2009" , "Later11 test message"),
//new Array("05/06/2009" , "Later12 test message"),
//new Array("05/07/2009" , "Later13 test message"),
//new Array("05/08/2009" , "Later14 test message"),
//new Array("05/09/2009" , "Later15 test message"),
//new Array("05/10/2009" , "Later16 test message"),
//new Array("05/11/2009" , "Later17 test message"),

//
// real dates
//
// 2009
//

new Array("12/25/2009" , "Christmas Day!"),

new Array("01/01/2010" , "The next decade begins!"),

new Array("03/14/2010" , "Mothering Sunday (Mother's Day)"),
new Array("03/28/2010" , "BST begins - at 1 am (01:00) GMT we move our clocks <b>forward</b> by 1 hour for the start of British Summer Time, so 1am GMT becomes 2am BST  = we lose an hour's sleep!"),


new Array("04/02/2010" , "Good Friday Bank Holiday"),
new Array("04/04/2010" , "SigneTs Wish You a Happy Easter!!!"),
new Array("04/04/2010" , "Easter Sunday"),
new Array("04/05/2010" , "Easter Monday Bank Holiday"),

new Array("05/03/2010" , "May Day Bank Holiday"),

new Array("05/15/2010" , "Paxton Lakes SigneT Open Meeting"),
new Array("05/15/2010" , "SigneT social gathering, Paxton"),
new Array("05/16/2010" , "Paxton Lakes SigneT Towie Nail Trophy"),



new Array("05/31/2010" , "Spring Bank Holiday"),

new Array("06/19/2010" , "Grafham Water SigneT Open Meeting in Beds & Cambs Regatta"),

new Array("07/04/2010" , "Aquarius SigneT Open Meeting"),

new Array("07/10/2010" , "The 40th Anniversary Paxton Lakes SC RNLI 24 hour Race on 10 & 11 July 2010"),

new Array("08/01/2010" , "SigneT National Championships at Bradwell: 1200 Briefing, 1400 Practice Race (tbc)"),
new Array("08/02/2010" , "SigneT National Championships at Bradwell: 1100 Main Briefing, 1300 Race 1 (tbc), Race 2 Back-to-back"),
new Array("08/03/2010" , "SigneT National Championships at Bradwell: 1330 Race 3 (tbc), 1500 Crew Invitation (tbc)"),
new Array("08/04/2010" , "SigneT National Championships at Bradwell: Lay day"),
new Array("08/05/2010" , "SigneT National Championships at Bradwell: 1400 Race 4 incorporating Helm Invitation (tbc), Race 5 back-to-back"),
new Array("08/05/2010" , "SigneT Class Owners Association AGM, Bradwell: 1930, followed by a quiz"),
new Array("08/06/2010" , "SigneT National Championships at Bradwell: 1500 Race 6/RNLI (tbc), 1630 Singlehanded Race (i.e. back-to-back with Race 6 etc)"),
new Array("08/06/2010" , "SigneT National Championships at Bradwell:  Evening - dinner followed by Prizegiving"),

new Array("08/30/2010" , "August Bank Holiday Monday"),


//new Array("09/18/2010" , "SigneT Class Owners Association Committee Meeting"),
new Array("09/19/2010" , "Lakeside (Ferry Meadows) SigneT Open Meeting"),


new Array("10/31/2010" , "Halloween Night"),

new Array("12/25/2010" , "Christmas Day!"),


// clocks go backward
new Array("10/31/2010" , "GMT returns - at 2am (02:00) BST we move our clocks <b>back</b> by 1 hour for the end of British Summer Time so 2am BST becomes 1am GMT = we gain an hour's sleep!"),
//





//
// clocks go forward
new Array("03/27/2011" , "BST begins - at 1 am (01:00) GMT we move our clocks <b>forward</b> by 1 hour for the start of British Summer Time, so 1am GMT becomes 2am BST  = we lose an hour's sleep!"),

new Array("08/29/2011" , "August Bank Holiday Monday"),



// clocks go backward
new Array("10/30/2011" , "GMT returns - at 2am (02:00) BST we move our clocks <b>back</b> by 1 hour for the end of British Summer Time so 2am BST becomes 1am GMT = we gain an hour's sleep!"),
//

new Array("08/27/2012" , "August Bank Holiday Monday"),



///
new Array("" , "")  // essential that last line has no comma at the end
);
//
// *** END of JAVASCRIPT ***
//