//quakelist.js - options to form the list of available  
// earthquakes for the EQ questionnaire

// To add a new earthquake to the list:
//   add a line to the list below of the form
//      new Array ('name', 'description'),
//   where name is the earthquake ID as it will appear in the database
//   and description is the text that will appear on the browser.
//   The line should end with a comma EXCEPT for the last
//   line in the list. If you are adding an entry as the last
//   in the list, it doesn't have a comma but the PREVIOUS
//   line now must.
//
//  An example of a complete list:
//
//var quakelist = new Array
//(
//  new Array ('200310221352',	'Earthquake 1, 22 Oct 2003, 13:52'),
//  new Array ('200311191024',	'Earthquake 2, 19 Nov 2003, 10:24'),
//  new Array ('200312031037',	'Earthquake 3, 3 Dec 2003, 10:37'),
//  new Array ('200606081223',	'Earthquake 4, 8 Jun 2006, 12:23')
//);
//




var quakelist = new Array
(
  new Array ('200802270056', '8 km East of Market Rasen, Lincolnshire, Magnitude 5.3 ML, 27 February 2008, 00:56 UTC')
);

