// All instructions begin with // like this line
// DO NOT ALTER THE THREE LINES BELOW

eventDate = new Array();
eventSpeaker = new Array();
eventDesc = new Array();

// Add and remove events from the list below.
// Events must be numbered sequentially, starting with 0.
// YOU DON'T NEED TO ADD DATE OR SPEAKER BUT YOU MUST ADD DESCRIPTION
//	E.g. eventDate[x] = "20th Sep 2004";
//       eventDesc[x] = "Visit to Disneyland.";
//	if there is no guest speaker scheduled.  
// Don't use double quotes (").
// Make sure you get the case (e.g. eventDate, not eventdate)
//  and punctuation right.







eventDate[0] = "1 November till December 2009";
eventSpeaker[0] = "<strong>Yorkshire Monochrome Group&#39s 2009 Photographic Exhibition</strong>";
eventDesc[0] = "At Wath Community Library.  The library is open daily from 10 until 5 except for Tuesday mornings and Wednesday afternoons.  Admission is free and there is free car parking adjacent to the buildings."

eventDate[1] = "13 December 2009";
eventSpeaker[1] = "Leigh Preston FRPS";
eventDesc[1] = "Leigh needs no introduction. He is one of our most popular visitor and visits us almost every year.  We look forward to his humour and the inspiring images he conjures out of what to many of us may first seem unpromising situations  "

eventDate[2] = "10 January 2010";
eventSpeaker[2] = "Steve Le Prevost FRPS MPAGB";
eventDesc[2] = "Steve is based in Guernsey.  His work concentrates exclusively on photographic art.  He successfully competes in national and international salons."

eventDate[3] = "14 February 20010";
eventSpeaker[3] = "Steve Smith FRPS MPAGB";
eventDesc[3] = "Steve is a member of Amersham PS and has recently been awarded his FRPS.  He has made several visits to Cuba&#44 where he has enjoyed photographing people in their environment."

eventDate[4] = "14 March 2010";
eventSpeaker[4] = "Anthony Penrose";
eventDesc[4] = "Tony is the son of Lee Miller about whom he has written several books.  He now lives in his parents&#39 home which he maintains as it was in their day&#44 where some of the great surrealists came to stay.  He also administers his mother&#39s archive.  His visit will give us an opportunity of seeing some of Lee Miller&#39s work and hear something of her fascinating life. "

eventDate[5] = "11 April 2010";
eventSpeaker[5] = "Colin Holmes";
eventDesc[5] = "Colin is based in Scotland where for the last seven years he has pursued his passion for creative moody monochrome landscapes."

eventDate[6] = "9 May 2010";
eventSpeaker[6] = "To be arranged";
eventDesc[6] = ""

eventDate[7] = "13 June 2010";
eventSpeaker[7] = "To be arranged";
eventDesc[7] = ""

eventDate[8] = "11 July 2010";
eventSpeaker[8] = "Colour Meeting";
eventDesc[8] = ""

eventDate[9] = "8 August 2010";
eventSpeaker[9] = "Colour meeting";
eventDesc[9] = ""

eventDate[10] = "12 September 2010";
eventSpeaker[10] = "To be arranged";
eventDesc[10] = ""

eventDate[11] = "10 October 2010";
eventSpeaker[11] = "To be arranged";
eventDesc[11] = ""

eventDate[12] = "14 November 2010";
eventSpeaker[12] = "To be arranged";
eventDesc[12] = ""

eventDate[13] = "12 December 2010";
eventSpeaker[13] = "Steve Gosling FRPS";
eventDesc[13] = "Steve is a professional photographer who is probably best known for his pin hole images.  He has published a book entitled &#39Lensless Landscapes&#39.  He has also had articles published in several photographic magazines including &#39Black and White Photography&#39."
// EVENTS WILL ONLY BE LISTED IF THEY ARE INCLUDED ABOVE


