/////////////////////////////////////////////////////////////////////// 
// eventlist.js 
/////////////////////////////////////////////////////////////////////// 
// if events are every year events then specify -1 for year 
// if events are every month events then specify -1 for month 
// URL is optional
//
// nthDay is [0..6] corresponding to Sun - Sat
//   example: 4 = Wednesday
//
// nthWeek = 1..4
//   example, nthDay=4 and nthWeek=2  --> this means every 2nd Wednesday of the month
//
// nthDayAdjust = [n] days before the nthDay specified (usually zero)
//   example, nthDay=4 and nthWeek=2, and nthDayAdjust=-1 --> this means the day before the 2nd Wednesday of each month
//
//  addEvent(nthDayAdjust, nthDay, nthWeek, day, month, year, title, URL)
//
// SAMPLES:
// General Meetings on 2nd and 4th Wednesdays; Orientations the day before:
//
//   addEvent(0,  3, 2,	7,	-1,	-1,	"General Meeting", "general_meeting.htm"); 
//   addEvent(-1, 3, 2,	7,	-1,	-1,	"Orientation", "orientation.htm"); 
//   addEvent(0,  3, 4,	7,	-1,	-1,	"General Meeting", "general_meeting.htm"); 
//   addEvent(-1, 3, 4,	7,	-1,	-1,	"Orientation", "orientation.htm"); 
//
// this sample is for a test on the 9th of every month:
//   addEvent(0,0,0, 9,	-1,	-1,	"test", ""); 



// addEvent(0,  3, 2,	7,	-1,	-1,	"General Meeting", "general_meeting.htm"); 
// addEvent(-1, 3, 2,	7,	-1,	-1,	"Orientation", "orientation.htm"); 
// addEvent(0,  3, 4,	7,	-1,	-1,	"General Meeting", "general_meeting.htm"); 
// addEvent(-1, 3, 4,	7,	-1,	-1,	"Orientation", "orientation.htm"); 



addEvent(0,0,0,		25,	12,	-1,	"Christmas Day", ""); 
addEvent(0,0,0,		1,	1,	-1,	"New Year's Day", ""); 
addEvent(0,0,0,		14,	2,	-1,	"Valentines Day", ""); 


/////////////////////////////////////////////////////////////////////// 
