// JavaScript Document

// array is very fragile and page fails to display if it goes wrong -
// recommend pasting new Array items from the element below
// and remember to make sure that there is a comma at the end of every array item except the last

// new Array("", "", "", "", 64),
// [each internal array item format: Date ("Dy dd.MM.yy"), Place, Map URL (must include http://), Closest stop, Stop code (integer - bit values below)]
//
// stop code values:
//                     0 = public transport not possible [text appears in closest stop field but no action associated]
//   Info bits
//                     1 = stop a long way from run site
//                     2 = lifts likely to be available from listed stop to run site
//                     4 = public transport possible, but times poor
//                     8 = complete guess by hare-raiser
//                    16 = reserved
//                    32 = reserved
//   Timetable to use
//                    64 = closest stop to be entered into CFF-powered form (only current option - tag currently ignored)

var runs = new Array(
  new Array("Mo 28.11.05", "Gd. Saconnex Place", "", "Grand Saconnex Place", 64),
  new Array("We 30.11.05", "Parc des Eaux-Vives", "", "Gen&egrave;ve, Parcs", 64),
  new Array("Sa 03.10.05", "1730 by McDonalds, Plainpalais (Escalade)", "", "", 64),
  new Array("Mo 05.12.05", "Somewhere in Ferney Voltaire", "", "", 64),
  new Array("We 07.12.05", "[no details at 28/11]", "", "", 64),
  new Array("Mo 12.12.05", "[Hare wanted as at 28/11]", "", "", 64),
  new Array("We 14.12.05", "[no details at 28/11]", "", "", 64),
  new Array("Mo 19.12.05", "Cours St. Pierre (Cathedral, Old Town)", "", "Cath&eacute;drale on 36 line is the closest stop, but Place Neuve (3, 5, 12), Croix Rouge (3, 5) or Molard (2, 7, 9, 12, 16, 20, 29) would probably be easier", 0),
  new Array("We 21.12.05", "[no details at 28/11]", "", "", 64),
  new Array("Mo 26.12.05", "DIY trail from Pickwick's, rue de Lausanne", "", "", 64),
  new Array("We 28.12.05", "[no details at 28/11]", "", "", 64)
)


