//
// Define events to display with the calendar
//
var eventsArr=new Array(
'2009|	03|	01|	A|	<font color="yellow">PhotoArt 2009</font><br>Judging of Entries',
'2011|	09|	25|	A|	<font color="yellow">OBSCURA</font><br>Deadline',
'2011|	09|	19|	A|	<font color="yellow">7:30 pm to 9:30 pm</font><br>Monthly club meeting at <br>Christ the King High School.',
'2011|	10|	25|	A|	<font color="yellow">OBSCURA</font><br>Deadline',
'2011|	10|	17|	A|	<font color="yellow">7:30 pm to 9:30 pm</font><br>Monthly club meeting at <br>Christ the King High School.',
'2011|	11|	25|	A|	<font color="yellow">OBSCURA</font><br>Deadline',
'2011|	11|	14|	A|	<font color="yellow">7:30 pm to 9:30 pm</font><br>Monthly club meeting at <br>Christ the King High School.',
'2011|	12|	25|	A|	<font color="yellow">OBSCURA</font><br>Deadline',
'2011|	12|	12|	A|	<font color="yellow">7:30 pm to 9:30 pm</font><br>Monthly club meeting at <br>Christ the King High School.',
'2012|	01|	09|	A|	<font color="yellow">7:30 pm to 9:30 pm</font><br>Monthly club meeting at <br>Christ the King High School.',
'2012|	01|	25|	A|	<font color="yellow">OBSCURA</font><br>Deadline',
'2012|	01|	09|	A|	<font color="yellow">7:30 pm to 9:30 pm</font><br>Monthly club meeting at <br>Christ the King High School.',
'2012|	01|	25|	A|	<font color="yellow">OBSCURA</font><br>Deadline',
'2012|	01|	09|	A|	<font color="yellow">7:30 pm to 9:30 pm</font><br>Monthly club meeting at <br>Christ the King High School.',
'2012|	01|	25|	A|	<font color="yellow">OBSCURA</font><br>Deadline',
'2012|	01|	09|	A|	<font color="yellow">7:30 pm to 9:30 pm</font><br>Monthly club meeting at <br>Christ the King High School.',
'2012|	01|	25|	A|	<font color="yellow">OBSCURA</font><br>Deadline',
'2012|	02|	13|	A|	<font color="yellow">7:30 pm to 9:30 pm</font><br>Monthly club meeting  <br>Christ the King High School.<br> <font color="yellow">remember to bring your <br>Photo Art and GTCCC Entries </font>',
'2012|	02|	25|	A|	<font color="yellow">Photo Art Entries</font><br>10:00 am - 6:00 pm <br> at Georgetown Market Mall<br> <font color="red">OBSCURA Deadline</font>',
'2012|	02|	26|	A|	<font color="yellow">Photo Art Entries</font><br>10:00 am - 6:00 pm <br>at Georgetown Market Mall',
'2012|	03|	19|	A|	<font color="yellow">7:30 pm to 9:30 pm</font><br>Monthly club meeting at <br>Christ the King High School.',
'2012|	03|	25|	A|	<font color="yellow">OBSCURA</font><br>Deadline',
'2012|	04|	16|	A|	<font color="yellow">7:30 pm to 9:30 pm</font><br>Monthly club meeting at <br>Christ the King High School.',
'2012|	04|	25|	A|	<font color="yellow">OBSCURA</font><br>Deadline',
'2012|	05|	14|	A|	<font color="yellow">7:30 pm to 9:30 pm</font><br>Monthly club meeting at <br>Christ the King High School.',
'2012|	05|	25|	A|	<font color="yellow">OBSCURA</font><br>Deadline',
'2012|	06|	11|	A|	<font color="yellow">7:30 pm to 9:30 pm</font><br>Monthly club meeting at <br>Christ the King High School.',
'2012|	06|	25|	A|	<font color="yellow">OBSCURA</font><br>Deadline'
);

//
// Define newsflash that rolls when the user is logged on. Set to '' if there is no newsflash.
//
//var currentNewsFlash='<center>We wish you all a Merry Christmas and a Happy New Year!</center>';
var currentNewsFlash='';

//
// Define the meeting dates for one year.
//
function meetingDates()
{
	meetings='';

	meetings += '<table width="100%" border="0" cellpadding="6" align="center">';
	meetings += '<tr><td rowspan="4" width="50%"><font face="Arial, Helvetica, sans-serif"><b>';
	meetings += 'At our meetings, we try to keep business to a minimum; allowing more time for learning, development and sharing.'; 
	meetings += '<p>';
	meetings += 'At each meeting, time is allotted for small exercises and/or informal critiquing of images by our more experienced'; 
	meetings += 'fellow members.  Each meeting attempts to incorporate a guest speaker, workshop, or member photo presentations.';
	meetings += '<p>';
	meetings += 'The club usually meets at 7:30pm on the second Monday of each month (excluding July and August) at'; 
	meetings += 'Christ the King High School located on Guelph Street (Hwy #7) in Georgetown.';

	meetings += '<ul> ';
	meetings += '<li>September 19, 2011';
	meetings += '<li>October 17, 2011';
	meetings += '<li>November 14, 2011';
	meetings += '<li>December 12, 2011';
	meetings += '<li>January 9, 2012';
	meetings += '<li>February 13, 2012';
	meetings += '<li>March 19, 2012';
	meetings += '<li>April 16, 2012';
	meetings += '<li>May 14, 2012';
	meetings += '<li>June 11, 2012';
	meetings += '</ul> ';
	meetings += '</b></font></td></tr>';
	meetings += '</table>';

	document.write (meetings);
}

