// JS array of events and parms

// parmsArray = 
//	0 key
//	1 event name
// 	2 dates
// 	3 latitude
// 	4 longitude
//	5 address
//	6 post code
//	7 venue link
//	8 weather region code
//  9 event end date ("YYYY/MM/DD")
// 10 Event status - P=provisional C=confirmed
// 11 participant information

// eventsArray = parms

var eventsArray = [];
var parmsArray = [];
var curYear = "2011";
parmsArray = ['stratford1', 'Stratford Armouries', 'March 5th. - 6th.', 52.228426, -1.726293, 'Stratford Armouries - Gospel Oak Lane, Pathlow, Stratford on Avon. Warwickshire', 'CV370JA', 'http://www.stratfordarmouries.co.uk/', 324222, '2011/03/06', 'C', ""];
eventsArray.push(parmsArray);
parmsArray =  ['wimpole', 'Wimpole Hall', 'April 16th. - 17th.', 52.14146, -0.049206, 'Wimpole Hall, Cambridgeshire', 'SG8 0BW','http://www.eventplan.mysite1952.co.uk/page78a.html', 310042, '2011/04/17', 'P', '' ];
eventsArray.push(parmsArray);
parmsArray =  ['belhus', 'Belhus Woods Country Park', 'April 30th. - May 2nd.', 51.519672, 0.253737, 'Belhus Woods country park, Romford Road, Aveley, South Ockendon', 'RM15 4XJ','http://www.visitessex.com/discover/rural/thedms.aspx?dms=13&venue=0144903', 353233, '2011/05/02', 'C', '' ];
eventsArray.push(parmsArray);
parmsArray = ['stratford2', 'Stratford Armouries', 'May 28th. - 30th.', 52.228426, -1.726293, 'Stratford Armouries - Gospel Oak Lane, Pathlow, Stratford on Avon. Warwickshire', 'CV370JA', 'http://www.stratfordarmouries.co.uk/', 324222, '2011/05/30', 'C', ""];
eventsArray.push(parmsArray);
parmsArray = ['broadlands', 'Broadlands', 'August 6th. - 7th.', 50.980417, -1.496944, 'Romsey, Hampshire', 'SO51 9ZD', 'http://www.broadlands.net/', 3, '2011/08/07', 'C', ''];
eventsArray.push(parmsArray);
parmsArray = ['detling', 'Detling Military Odyssey', 'August 27th. - 29th.', 51.301219, 0.585701, 'The Kent Showground, Maidstone, Kent', 'ME14 3JF', 'http://www.military-odyssey.fsnet.co.uk/mo/mo-f.html', 310106, '2011/08/29', 'C', '' ];
eventsArray.push(parmsArray);
parmsArray = ['bath', 'The American Museum in Bath', 'September 24th. - 25th.', 51.375360, -2.311313, 'Claverton Manor, Bath', 'BA2 7BD', 'http://www.americanmuseum.org/', 310026, '2011/09/25', 'C', '' ];
eventsArray.push(parmsArray);
parmsArray = ['bmt', 'British Military Tournament', 'November 30th. - December 2nd.', 51.48928, -0.197625, 'Earls Court Exhibition Centre, Warwick Road, London SW7', 'SW5 9TA', 'http://www.eco.co.uk/', 350928, '2011/12/02', 'C', '' ];
eventsArray.push(parmsArray);

