

window.INFO_WINDOW_TEXT_WIDTH = 260;
//window.CHESHIRE_SPEC = new WMSSpec("Cheshire","http://maps.cheshire.gov.uk/CheshireCC.RuralTourism.MapServer");
//window.AERIAL_SPEC = new AerialSpec("Aerial","http://maps.cheshire.gov.uk/CheshireCC.RuralTourism.MapServermapService=aerial");
window.CHESHIRE_SPEC = {};
window.AERIAL_SPEC = {};
window.DEFAULT_ZOOM = 7;
window.MAP_SERVER_URL = "http://maps.cheshire.gov.uk/CheshireCC.RuralTourism.MapServer/osmap.ashx?";
window.TILE_SIZE = 256;
window.IEHACKOFF = false || location.href.toUpperCase().indexOf('IEHACKOFF') != -1;
window.COPYRIGHT_MAP = {prefix:"Map: ", copyrightTexts:["&copy; Crown Copyright. All rights reserved 100019582 2008 "]};
window.COPYRIGHT_AERIAL = {prefix:"Aerial: ", copyrightTexts:["&copy; <a id='aerial-copyright' href='http://www.getmapping.com' target='_blank'>getmapping.com</a> 2003"]};
window.ROUTE_TYPE_SELECTED = "Medium";
window.regionId = 1;

var RegionMaps = [];
RegionMaps[1] = new MapPoint(-2.5,53.15,7);
RegionMaps[2] = new MapPoint(-2.7,53.4,7);
RegionMaps[3] = new MapPoint(-2.5,53.15,7);
RegionMaps.DEFAULT = RegionMaps[1]; 

var RegionNames = [];
RegionNames[1] = "Cheshire";
RegionNames[2] = "Mersey Forest";
RegionNames[3] = "Cheshire Gardens";

function MapPoint(x,y,zoom)
{
  this.x = x;
  this.y = y;
  this.zoom = zoom;
}

function CreateMap(divmap,filter) 
{ 
  var mapTileLayers    = [createGTileLayer()];
  var aerialTileLayers = [createGTileLayer("aerial")];
  var osTileLayers     = [createGTileLayer("osraster")];
  if (filter != null) {
    var fakeOverlayLayer = createGTileLayer("overlay",filter);
    mapTileLayers.push(fakeOverlayLayer);
    aerialTileLayers.push(fakeOverlayLayer);
    osTileLayers.push(fakeOverlayLayer);
  }
  aerialTileLayers[0].getCopyright = function(a,b) {
    return window.COPYRIGHT_AERIAL;
  }

  var _mMapError = "We are sorry, but we don't have maps at this zoom level for this region.";
  var CheshireMap = new GMapType(mapTileLayers,osgbProj,"Map",{errorMessage:_mMapError,tileSize:window.TILE_SIZE,maxResolution:17,minResolution:8});
  var AerialMap  = new GMapType(aerialTileLayers,osgbProj,"Aerial",{errorMessage:_mMapError,tileSize:window.TILE_SIZE,maxResolution:15,minResolution:8,textColor:"#FFF",linkColor:"#FFF"});
  //var OsMap = new GMapType(osTileLayers,osgbProj,"OS Raster",{errorMessage:_mMapError,tileSize:window.TILE_SIZE,maxResolution:17,minResolution:11,textColor:"#FFF",linkColor:"#FFF"});

  var map = new GMap2(divmap,{mapTypes:[CheshireMap,AerialMap/*,OsMap*/]}); 
  map.addControl(new GLargeMapControl()); 
  map.addControl(new GMapTypeControl()); 
  map.addControl(new GScaleControl()); 
  var overviewControl = new GOverviewMapControl(new GSize(120,120));
  map.addControl(overviewControl,new GControlPosition(G_ANCHOR_BOTTOM_RIGHT,new GSize(10,10)));
  overviewControl.hide();
  
  map.enableDoubleClickZoom();
  if (!window.IEHACKOFF) map.enableContinuousZoom();
  new GKeyboardHandler(map);
  // Dirty hack to reposition the overlay tiles every few moves
  /*
  GEvent.addListener(map, 'moveend', function() { 
	if (window.filter != null && window.filter.overlay != null && window.justPanned == 0) {
		window.justPanned = 3;
		map.setZoom(map.getZoom());
	} else {
		if (window.justPanned == null) 
			window.justPanned = 3;
		else
			window.justPanned = window.justPanned - 1;
	}
  });
  */

  // The allowed region which the whole map must be within
  //var allowedBounds = new GLatLngBounds(new GLatLng(49.5,-10), new GLatLng(59,2.6));
  var allowedBounds = new GLatLngBounds(osgbProj.fromENToLatLng(new GPoint(320000,335000),0), osgbProj.fromENToLatLng(new GPoint(405000,425000),0));

  // Add a move listener to restrict the bounds range
  GEvent.addListener(map, "moveend", function() {
	// If the map position is out of range, move it back
	// Perform the check and return if OK
	if (allowedBounds.contains(map.getCenter())) {
		return;
	}
	// It's not OK, so find the nearest allowed point and move there
	var C = map.getCenter();
	var X = C.lng();
	var Y = C.lat();

	var AmaxX = allowedBounds.getNorthEast().lng();
	var AmaxY = allowedBounds.getNorthEast().lat();
	var AminX = allowedBounds.getSouthWest().lng();
	var AminY = allowedBounds.getSouthWest().lat();

	if (X < AminX) {X = AminX;}
	if (X > AmaxX) {X = AmaxX;}
	if (Y < AminY) {Y = AminY;}
	if (Y > AmaxY) {Y = AmaxY;}
	//alert ("Restricting "+Y+" "+X);
	map.setCenter(new GLatLng(Y,X));
   }
  );

  return map;
}


function MapCenter(regId)
{
  var mapPoint = RegionMaps[regId] || RegionMaps.DEFAULT;
  this.point = new GPoint(mapPoint.x,mapPoint.y);
  this.center = new GLatLng(mapPoint.y,mapPoint.x);
  this.zoom = 17 - mapPoint.zoom;
}


var RT_Alias = [];
RT_Alias["Walking"] = {'Easy':'Easy','Medium':'Moderate','Hard':'Challenging','Long Distance':'Long Distance'};
RT_Alias["Cycling"] = {'Easy':'Traffic Free','Medium':'Circular Rides','Hard':'Mountain Biking','Long Distance':'National Cycle Network'};
RT_Alias["Riding"] = {'Easy':'Easy','Medium':'Moderate','Hard':'Challenging','Long Distance':'Long Distance'};



var Outandabouts = [];
  
Outandabouts[1] =
{
  id:      1,
  name:    "Stanney Woods Local Nature Reserve",
  catId:   5,
  regions: 1,
  desc:    "<SPAN id=lblMessage><IMG style=\"MARGIN-RIGHT: 8px\" height=96 alt=\"Stanney Woods\" src=\"http://www.discovercheshire.co.uk/files/Stanney-Woods-Path.jpg\" width=96 align=left border=0>An ancient woodland of oak and silver birch with an easy access trail. </SPAN>",
  extent:  new GLatLngBounds(new GLatLng(53.259734,-2.902044),new GLatLng(53.259734,-2.902044))
}
  
Outandabouts[3] =
{
  id:      3,
  name:    "Brereton Heath Local Nature Reserve",
  catId:   5,
  regions: 1,
  desc:    "<P class=MsoNormal style=\"MARGIN: 0cm 0cm 0pt\"><SPAN style=\"FONT-SIZE: 10pt; FONT-FAMILY: Arial\"><IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"November at Brereton Heath\" src=\"http://www.discovercheshire.co.uk/files/Brereton-Heath-Reflections96.jpg\" width=96 align=left border=0>Explore Brereton Heath with gentle walks through the woodland and restful views over the lake. </SPAN></P>",
  extent:  new GLatLngBounds(new GLatLng(53.182812,-2.301477),new GLatLng(53.182812,-2.301477))
}
  
Outandabouts[4] =
{
  id:      4,
  name:    "Anderton Nature Park",
  catId:   6,
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Anderton Nature Park Path\" src=\"http://www.discovercheshire.co.uk/files/Anderton-Nature-Park-Path96.jpg\" width=96 align=left border=0>Explore Anderton Nature Park, a wildlife haven transformed from industrial wasteland, next to the historic Victorian boat lift and close to Northwich town centre.<A href=\"http://www.discovercheshire.co.uk/files/Cheshire/Audio/07TeggsNoseCountryPark.mp3\" target=_blank></A><BR>",
  extent:  new GLatLngBounds(new GLatLng(53.271367,-2.520962),new GLatLng(53.271367,-2.520962))
}
  
Outandabouts[5] =
{
  id:      5,
  name:    "Marbury Country Park",
  catId:   5,
  regions: 1,
  desc:    "<P><IMG height=96 alt=\"Marbury Country Park\" src=\"http://www.discovercheshire.co.uk/files/Marbury-Lime-Avenue-Thumb.jpg\" width=96 align=left border=0>Walk amongst dragons and kings! Explore the walks and trails, discover unique habitats and diverse wildlife or simply come and enjoy nearly a 1,000 acres of community woodlands reaching from Northwich town centre to Marbury Country Park.</P>",
  extent:  new GLatLngBounds(new GLatLng(53.282622,-2.519426),new GLatLng(53.282622,-2.519426))
}
  
Outandabouts[6] =
{
  id:      6,
  name:    "Northwich Community Woodlands",
  catId:   5,
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Bluebells in Northwich Community Woodlands\" src=\"http://www.discovercheshire.co.uk/files/Marbury-Country-Park-Bluebells96.jpg\" width=96 align=left border=0>Walk amongst dragons and kings! Explore the walks and trails, discover unique habitats and diverse wildlife or simply come and enjoy nearly a 1,000 acres of community woodlands reaching from Northwich town centre to Marbury Country Park. ",
  extent:  new GLatLngBounds(new GLatLng(53.27516,-2.505232),new GLatLng(53.27516,-2.505232))
}
  
Outandabouts[7] =
{
  id:      7,
  name:    "Shakerley Mere",
  catId:   5,
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"shakely Mere\" src=\"http://www.discovercheshire.co.uk/files/shakerley.jpg\" width=96 align=left border=0>Enjoy a pleasant stroll around this attractive lake - stop to watch birds or picnic beneath the birch and oak trees.",
  extent:  new GLatLngBounds(new GLatLng(53.23562,-2.400497),new GLatLng(53.23562,-2.400497))
}
  
Outandabouts[8] =
{
  id:      8,
  name:    "Astbury Mere Country Park",
  catId:   5,
  regions: 1,
  desc:    "<P class=MsoNormal style=\"MARGIN: 0cm 0cm 0pt\"><SPAN style=\"FONT-FAMILY: Arial\"><SPAN style=\"FONT-SIZE: 9.5pt; COLOR: black\"><IMG style=\"MARGIN-RIGHT: 4px\" height=96 alt=\"Astbury Village\" src=\"http://www.discovercheshire.co.uk/files/Cheshire/Images/Attractions/Thumbnails/Astbury.jpg\" width=96 align=left border=0>Discover Astbury Mere Country Park, a tranquil green oasis close to Congleton town centre.<BR></SPAN></SPAN></P>",
  extent:  new GLatLngBounds(new GLatLng(53.1605,-2.226368),new GLatLng(53.1605,-2.226368))
}
  
Outandabouts[9] =
{
  id:      9,
  name:    "Weaver Parkway",
  catId:   6,
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"weaver parkway\" src=\"http://www.discovercheshire.co.uk/files/Weaver_Parkway_thumb.jpg\" width=96 align=left border=0>Winsford’s Hidden gem beside the River Weaver - a haven for wildlife and people alike.",
  extent:  new GLatLngBounds(new GLatLng(53.204776,-2.516442),new GLatLng(53.204776,-2.516442))
}
  
Outandabouts[10] =
{
  id:      10,
  name:    "Wheelock Rail Trail",
  catId:   6,
  regions: 1,
  desc:    "The Wheelock Rail Trail is a 2km multi-user route from Ettiley Heath to Malkins Bank. ",
  extent:  new GLatLngBounds(new GLatLng(53.134351,-2.37865),new GLatLng(53.134351,-2.37865))
}
  
Outandabouts[11] =
{
  id:      11,
  name:    "Salt Line",
  catId:   6,
  regions: 1,
  desc:    "<IMG height=96 alt=\"Ranger teaching children\" src=\"http://www.discovercheshire.co.uk/files/al.jpg\" width=96 align=left border=0>The Salt Line is a traffic free route from Hassall Green to Alsager through farmland and woodlands. ",
  extent:  new GLatLngBounds(new GLatLng(53.111936,-2.31834),new GLatLng(53.111936,-2.31834))
}
  
Outandabouts[12] =
{
  id:      12,
  name:    "Merelake Way",
  catId:   6,
  regions: 1,
  desc:    "<IMG height=96 alt=\"country lane\" src=\"http://www.discovercheshire.co.uk/files/merelake-way.jpg\" width=96 align=left border=0>Walkers can enjoy excellent birdwatching in the wooded cuttings along the Merelake Way.",
  extent:  new GLatLngBounds(new GLatLng(53.08659,-2.283807),new GLatLng(53.08659,-2.283807))
}
  
Outandabouts[13] =
{
  id:      13,
  name:    "Biddulph Valley Way",
  catId:   6,
  regions: 1,
  desc:    "<IMG height=96 alt=fungi src=\"http://www.discovercheshire.co.uk/files/fungi.jpg\" width=96 align=left border=0>Follow the Biddulph Valley Way out from Congleton town through the pretty Dane-in-Shaw valley to the rolling countryside beyond.",
  extent:  new GLatLngBounds(new GLatLng(53.159035,-2.177655),new GLatLng(53.159035,-2.177655))
}
  
Outandabouts[14] =
{
  id:      14,
  name:    "Farndon Picnic Area",
  catId:   6,
  regions: 1,
  desc:    "<P class=MsoNormal style=\"MARGIN: 0cm 0cm 0pt\"><IMG height=96 alt=Farndon src=\"http://www.discovercheshire.co.uk/files/farndon-thumb.jpg\" width=96 align=left border=0>Farndon Picnic Area is an attractive spot on the bank of the River Dee, which has been fought over from Roman times to the English Civil War. There are interesting walks around the village and it is an ideal base to explore the surrounding countryside.</P>",
  extent:  new GLatLngBounds(new GLatLng(53.081979,-2.874894),new GLatLng(53.081979,-2.874894))
}
  
Outandabouts[15] =
{
  id:      15,
  name:    "Caldy Nature Park",
  catId:   6,
  regions: 1,
  desc:    "<P class=MsoNormal style=\"MARGIN: 0cm 0cm 0pt\"><SPAN style=\"FONT-SIZE: 10pt; FONT-FAMILY: Arial\"><IMG height=96 alt=Meadow src=\"http://www.discovercheshire.co.uk/files/meadow.jpg\" width=96 align=left border=0>A small area of wetland, woodland and meadows close to <?xml:namespace prefix = st1 ns = \"urn:schemas-microsoft-com:office:smarttags\" /><st1:place><st1:PlaceName>Chester</st1:PlaceName> <st1:PlaceType>City</st1:PlaceType></st1:place> centre.</SPAN></P>",
  extent:  new GLatLngBounds(new GLatLng(53.178621,-2.862601),new GLatLng(53.178621,-2.862601))
}
  
Outandabouts[16] =
{
  id:      16,
  name:    "Rivacre Valley Local Nature Reserve",
  catId:   5,
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Flower Meadow\" src=\"http://www.discovercheshire.co.uk/files/flower_meadow.jpg\" width=96 align=left border=0>A green oasis of beautiful woodland and wildflower meadows close to Ellesmere Port. ",
  extent:  new GLatLngBounds(new GLatLng(53.292343,-2.930677),new GLatLng(53.292343,-2.930677))
}
  
Outandabouts[17] =
{
  id:      17,
  name:    "Wirral Country Park",
  catId:   5,
  regions: 1,
  desc:    "<P align=left><SPAN style=\"FONT-SIZE: 10pt; COLOR: rgb(0,0,0)\"><IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"bird watchers at Parkgate\" src=\"http://www.discovercheshire.co.uk/files/wirral_cp.jpg\" width=96 align=left border=0>Enjoy a traffic-free journey from Hooton to Parkgate along the former railway line.</SPAN></P>",
  extent:  new GLatLngBounds(new GLatLng(53.289678,-3.040652),new GLatLng(53.289678,-3.040652))
}
  
Outandabouts[18] =
{
  id:      18,
  name:    "Whitegate Way",
  catId:   5,
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Whitegate Way Station Sign\" src=\"http://www.discovercheshire.co.uk/files/Whitegate-Station-Thumb.jpg\" width=96 align=left border=0>Explore the Whitegate Way, an ideal traffic-free link from Winsford to Cuddington, near Delamere Forest Park. Shady wooded cuttings contrast with sunny open embankments, offering spectacular views over the Cheshire countryside",
  extent:  new GLatLngBounds(new GLatLng(53.207257,-2.57635),new GLatLng(53.207257,-2.57635))
}
  
Outandabouts[19] =
{
  id:      19,
  name:    "Delamere Forest Park",
  catId:   5,
  regions: 1,
  desc:    "<IMG style=\"MARGIN-RIGHT: 8px\" height=96 alt=\"Path in Delamere Forest\" src=\"http://www.discovercheshire.co.uk/files/Delamere-Path.jpg\" width=96 align=left border=0>Comprising over 950 hectares of mixed deciduous and evergreen forest, open grassland and wetlands,&nbsp; Delamere Forest Park&nbsp; is the largest wooded area in Cheshire. ",
  extent:  new GLatLngBounds(new GLatLng(53.235955,-2.683295),new GLatLng(53.235955,-2.683295))
}
  
Outandabouts[20] =
{
  id:      20,
  name:    "Little Budworth Country Park",
  catId:   5,
  regions: 1,
  desc:    "<P class=MsoNormal style=\"MARGIN: 0cm 0cm 0pt\"><SPAN style=\"FONT-SIZE: 10pt; FONT-FAMILY: Arial\"><IMG style=\"MARGIN-RIGHT: 8px\" height=96 alt=\"Little Budworth Entrance\" src=\"http://www.discovercheshire.co.uk/files/Little-Budworth-Woods-Entra.jpg\" width=96 align=left border=0>Explore Cheshire’s ancient heathland on paths through tranquil woodland, meandering through heathy glades.</SPAN></P>",
  extent:  new GLatLngBounds(new GLatLng(53.187093,-2.619418),new GLatLng(53.187093,-2.619418))
}
  
Outandabouts[21] =
{
  id:      21,
  name:    "Tatton Park",
  catId:   5,
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Tatton Park Deer\" src=\"http://www.discovercheshire.co.uk/files/Deer-in-front-of-Mansion96.jpg\" width=96 align=left border=0>Tatton Park is one of the UK’s most impressive historic estates boasting a 1,000 acre deer park, which&nbsp;is home to Red and Fallow Deer.&nbsp;The parkland, woodland and Meres provide plenty of opportunity for exploration on bike or on foot and are the perfect place to enjoy a picnic.",
  extent:  new GLatLngBounds(new GLatLng(53.330657,-2.382811),new GLatLng(53.330657,-2.382811))
}
  
Outandabouts[22] =
{
  id:      22,
  name:    "Lyme Park",
  catId:   5,
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Lyme Park Mansion\" src=\"http://www.discovercheshire.co.uk/files/Lyme-Park-Detail-96.jpg\" width=96 align=left border=0>Lyme Park is a National Trust estate with a lavishly decorated house, fine gardens and extensive parklands. ",
  extent:  new GLatLngBounds(new GLatLng(53.33906,-2.053512),new GLatLng(53.33906,-2.053512))
}
  
Outandabouts[47] =
{
  id:      47,
  name:    "Macclesfield Forest",
  catId:   5,
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"trees in snow\" src=\"http://www.discovercheshire.co.uk/files/macc-snow.jpg\" width=96 align=left border=0>Macclesfield Forest was once one of three Royal hunting forests in Cheshire. The forest has a herd of red deer and various other wildlife, while its reservoirs are home to many species of wildfowl. ",
  extent:  new GLatLngBounds(new GLatLng(53.238856,-2.052978),new GLatLng(53.238856,-2.052978))
}
  
Outandabouts[48] =
{
  id:      48,
  name:    "Tarbock Hall Woodlands",
  catId:   8,
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Tarbock Hall2.jpg\" align=left border=0>An extensive developing woodland in the grounds of the ancient hall.",
  extent:  new GLatLngBounds(new GLatLng(53.390373,-2.810996),new GLatLng(53.390373,-2.810996))
}
  
Outandabouts[49] =
{
  id:      49,
  name:    "Sefton Coast Woodlands",
  catId:   7,
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Sefton.JPG\" align=left border=0>A whole swathe of beautiful woodlands are scattered across the coastal part of Sefton borough near Formby, intermingled with dunes. They are one of the&nbsp;few remaining places in&nbsp;Britain&nbsp;where you can see the native red squirrel.",
  extent:  new GLatLngBounds(new GLatLng(53.585647,-3.064879),new GLatLng(53.585647,-3.064879))
}
  
Outandabouts[50] =
{
  id:      50,
  name:    "Childwall Fields & Woods",
  catId:   8,
  regions: 2,
  desc:    "<IMG height=67 alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/LWT - Childwall Woods 4.JPG\" width=103 align=left border=0>Urban wildlife and stunning views from these three wooded hills in Liverpool.",
  extent:  new GLatLngBounds(new GLatLng(53.389304,-2.880109),new GLatLng(53.389304,-2.880109))
}
  
Outandabouts[51] =
{
  id:      51,
  name:    "Risley Moss",
  catId:   8,
  regions: 2,
  desc:    "<IMG style=\"MARGIN-RIGHT: 5px\" height=99 alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/risley moss june 2005 002.JPG\" width=84 align=left border=0>Whatever the time of year there is always something different to see and do at Risley Moss.",
  extent:  new GLatLngBounds(new GLatLng(53.421268,-2.499083),new GLatLng(53.421268,-2.499083))
}
  
Outandabouts[53] =
{
  id:      53,
  name:    "Sefton Meadows",
  catId:   7,
  regions: 2,
  desc:    "<IMG height=60 alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Sefton Meadows.JPG\" width=80 align=left border=0>A newly planted woodland in the shape of a barn owl forms the centrepiece of this emerging forest park.",
  extent:  new GLatLngBounds(new GLatLng(53.506773,-2.968754),new GLatLng(53.506773,-2.968754))
}
  
Outandabouts[55] =
{
  id:      55,
  name:    "Teggs Nose Country Park",
  catId:   5,
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"\" src=\"http://www.discovercheshire.co.uk/files/Teggs-Nose-Reservoir-Thumb.jpg\" width=96 align=left border=0>Discover Tegg’s Nose Country Park and experience Cheshire’s wild hill country. <BR>",
  extent:  new GLatLngBounds(new GLatLng(53.247891,-2.077651),new GLatLng(53.247891,-2.077651))
}
  
Outandabouts[56] =
{
  id:      56,
  name:    "Aviation Viewing Park",
  catId:   6,
  regions: 1,
  desc:    "<H1><SPAN style=\"FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN-GB; mso-fareast-language: EN-US; mso-bidi-language: AR-SA\"><SPAN style=\"FONT-SIZE: 10pt; FONT-FAMILY: Arial\"><IMG height=96 alt=\"Aircraft landing\" src=\"http://www.discovercheshire.co.uk/files/avp.jpg\" width=96 align=left border=0>Viewing area with car park, small visitor centre, shop (run by The Aviation Society), aviation exhibits (including Concorde), refreshments, picnic areas and toilets (fully accessible).</SPAN></SPAN></H1>",
  extent:  new GLatLngBounds(new GLatLng(53.353947,-2.281545),new GLatLng(53.353947,-2.281545))
}
  
Outandabouts[59] =
{
  id:      59,
  name:    "Wheatacre",
  catId:   8,
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Wheatacre bubble.JPG\" align=left border=0>A new woodland, planted in 2003 by the Forestry Commission, that is popular with horse riders.",
  extent:  new GLatLngBounds(new GLatLng(53.431105,-2.672229),new GLatLng(53.431105,-2.672229))
}
  
Outandabouts[60] =
{
  id:      60,
  name:    "Sutton Manor",
  catId:   8,
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Sutton Manor bubble.JPG\" align=left border=0>What's astonishing about Sutton Manor is that until quite recently this 230 acre site was a thriving colliery with enormous slag heaps.",
  extent:  new GLatLngBounds(new GLatLng(53.410463,-2.720505),new GLatLng(53.410463,-2.720505))
}
  
Outandabouts[61] =
{
  id:      61,
  name:    "South St Helens Forest Park",
  catId:   7,
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/South St Helens FP bubble.JPG\" align=left border=0>An area that has been transformed by the creation of several woodland sites, and which will soon play host to Britain's next big public art project.",
  extent:  new GLatLngBounds(new GLatLng(53.421795,-2.693028),new GLatLng(53.421795,-2.693028))
}
  
Outandabouts[62] =
{
  id:      62,
  name:    "Frodsham Ancient Woodlands",
  catId:   7,
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Frodsham Ancient Woodlands bubble.JPG\" align=left border=0>Friendly towns, long distance trails, sandstone outcrops and well-preserved ancient woodlands are dotted across an attractive undulating landscape.",
  extent:  new GLatLngBounds(new GLatLng(53.280046,-2.703714),new GLatLng(53.280046,-2.703714))
}
  
Outandabouts[63] =
{
  id:      63,
  name:    "Upper Mersey Valley",
  catId:   7,
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Upper Mersey Valley bubble.JPG\" align=left border=0>A mecca for birdwatchers, and a very pleasant day out for the less fanatical!",
  extent:  new GLatLngBounds(new GLatLng(53.366392,-2.647177),new GLatLng(53.366392,-2.647177))
}
  
Outandabouts[64] =
{
  id:      64,
  name:    "Northwich  Community Woodlands",
  catId:   7,
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Northwich Community Woodlands bubble.JPG\" align=left border=0>Walk amongst dragons and kings! Explore the walks and trails, discover unique habitats and diverse wildlife or simply come and enjoy nearly 1,000 acres of community woodlands.",
  extent:  new GLatLngBounds(new GLatLng(53.275035,-2.51269),new GLatLng(53.275035,-2.51269))
}
  
Outandabouts[65] =
{
  id:      65,
  name:    "Whiston Wood",
  catId:   8,
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Whiston Wood bubble.JPG\" align=left border=0>A community woodland on the doorstep of Whiston, with trees and wildflowers, paths and wildlife waiting to be discovered.",
  extent:  new GLatLngBounds(new GLatLng(53.411603,-2.781695),new GLatLng(53.411603,-2.781695))
}
  
Outandabouts[66] =
{
  id:      66,
  name:    "Maypole",
  catId:   8,
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Maypole bubble.JPG\" align=left border=0>A young Forestry Commision woodland adjacent to Clockface Country Park and <A href=\"Outandabout.aspx?region=2&amp;name=Griffin%20Wood\">Griffin Wood</A>.",
  extent:  new GLatLngBounds(new GLatLng(53.420286,-2.689914),new GLatLng(53.420286,-2.689914))
}
  
Outandabouts[67] =
{
  id:      67,
  name:    "Old Pale",
  catId:   8,
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Old Pale 3 bubble.JPG\" align=left border=0>Take in the stunning view from the top of this steep new woodland site.",
  extent:  new GLatLngBounds(new GLatLng(53.221373,-2.678854),new GLatLng(53.221373,-2.678854))
}
  
Outandabouts[68] =
{
  id:      68,
  name:    "Church Wood",
  catId:   8,
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Church Wood bubble.JPG\" align=left border=0>A hundred-year-old woodland maintained by a thriving community group.",
  extent:  new GLatLngBounds(new GLatLng(53.22102,-2.55257),new GLatLng(53.22102,-2.55257))
}
  
Outandabouts[69] =
{
  id:      69,
  name:    "Clinkham Wood",
  catId:   8,
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Clinkham Wood bubble.JPG\" align=left border=0>A good example of the British bluebell's favourite habitat, a broadleaf woodland with sunny glades that is managed by a dedicated volunteer group.",
  extent:  new GLatLngBounds(new GLatLng(53.476579,-2.730586),new GLatLng(53.476579,-2.730586))
}
  
Outandabouts[70] =
{
  id:      70,
  name:    "Mill Wood & Alderwood",
  catId:   8,
  regions: 2,
  desc:    "<IMG height=126 alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Mill Wood and Alderwood bubble.JPG\" width=95 align=left border=0>A flagship site for Speke with a wide variety of flora, managed by a dedicated volunteer group.",
  extent:  new GLatLngBounds(new GLatLng(53.34766,-2.815691),new GLatLng(53.34766,-2.815691))
}
  
Outandabouts[71] =
{
  id:      71,
  name:    "Whitby Park",
  catId:   8,
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Whitby Park bubble.JPG\" align=left border=0>Partially formal park, partially more natural environments, Whitby Park boasts a sculpture trail, an ornamental pond and sports facilities.",
  extent:  new GLatLngBounds(new GLatLng(53.27169,-2.900915),new GLatLng(53.27169,-2.900915))
}
  
Outandabouts[72] =
{
  id:      72,
  name:    "Littlewood",
  catId:   8,
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Littlewood bubble.JPG\" align=left border=0>One of Knowsley's oldest woodlands, this wide avenue of oak trees once sheltered the coach road joining two stately homes.",
  extent:  new GLatLngBounds(new GLatLng(53.441774,-2.86346),new GLatLng(53.441774,-2.86346))
}
  
Outandabouts[73] =
{
  id:      73,
  name:    "Owley Wood",
  catId:   8,
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Owley Wood bubble.JPG\" align=left border=0>Named after the resident tawny owls, this woodland has been significantly improved by its very own volunteer group.",
  extent:  new GLatLngBounds(new GLatLng(53.262772,-2.56362),new GLatLng(53.262772,-2.56362))
}
  
Outandabouts[74] =
{
  id:      74,
  name:    "Murdishaw Valley",
  catId:   8,
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Murdishaw Valley bubble.JPG\" align=left border=0>Probably the best display of bluebells anywhere in The Mersey Forest region.",
  extent:  new GLatLngBounds(new GLatLng(53.319356,-2.658691),new GLatLng(53.319356,-2.658691))
}
  
Outandabouts[75] =
{
  id:      75,
  name:    "Woolton Woods & Camphill",
  catId:   8,
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Woolton Woods and Camphill bubble.JPG\" align=left border=0>An urban woodland with contrasting formal and country park landscapes, cared for by the local Residents' Association.",
  extent:  new GLatLngBounds(new GLatLng(53.368012,-2.867576),new GLatLng(53.368012,-2.867576))
}
  
Outandabouts[76] =
{
  id:      76,
  name:    "Griffin Wood",
  catId:   8,
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Griffin Wood bubble.JPG\" align=left border=0>An exemplary new community woodland being created by The Mersey Forest Team and a new volunteer group, the Friends of Griffin Wood.",
  extent:  new GLatLngBounds(new GLatLng(53.412948,-2.69291),new GLatLng(53.412948,-2.69291))
}
  
Outandabouts[77] =
{
  id:      77,
  name:    "Marshalls Arm",
  catId:   8,
  regions: 2,
  desc:    "<IMG height=93 alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Marshalls Arm bubble.JPG\" width=123 align=left border=0>The first Local Nature Reserve to be designated in Vale Royal, chosen because it is a haven for wildlife close enough for people to enjoy.",
  extent:  new GLatLngBounds(new GLatLng(53.245333,-2.523543),new GLatLng(53.245333,-2.523543))
}



var OC = [];
OC[5] = "Country Parks and Open Spaces";
OC[6] = "Smaller parks and picnic areas";
OC[7] = "Forest Parks";
OC[8] = "Community Woodlands";



var Gardens = [];
  
Gardens[2] =
{
  id:      2,
  name:    "Arley Hall & Gardens",
  catId:   1,
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Arley Hall and Rhododendrons\" src=\"http://www.discovercheshire.co.uk/files/Arleygarthumb96.jpg\" width=96 align=left border=0>Voted one of the top 50 gardens in Europe, Arley’s beautiful Grade II listed gardens cover over 17 acres (7ha).&nbsp; ",
  extent:  new GLatLngBounds(new GLatLng(53.322848,-2.489474),new GLatLng(53.322848,-2.489474))
}
  
Gardens[3] =
{
  id:      3,
  name:    "Capesthorne Gardens",
  catId:   1,
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Capesthorne Hall\" src=\"http://www.discovercheshire.co.uk/files/Capesthornegar96.jpg\" width=96 align=left border=0>Visit the gardens at magnificent Capesthorne Hall,&nbsp;&nbsp;the ancestral home of the Bromley-Davenport family since Norman times.&nbsp;",
  extent:  new GLatLngBounds(new GLatLng(53.250793,-2.239828),new GLatLng(53.250793,-2.239828))
}
  
Gardens[4] =
{
  id:      4,
  name:    "Gawsworth Hall Gardens",
  catId:   1,
  regions: 1,
  desc:    "<P><IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Gawsworth Hall Gardens\" src=\"http://www.discovercheshire.co.uk/files/Gawsworth-Hallgar96.jpg\" width=96 align=left border=0>A 15th century house with delightful gardens, once home to Mary Fitton, the supposed 'Dark Lady' of Shakespeare's sonnets.&nbsp; </P>",
  extent:  new GLatLngBounds(new GLatLng(53.223056,-2.161779),new GLatLng(53.223056,-2.161779))
}
  
Gardens[5] =
{
  id:      5,
  name:    "Chester Zoological Gardens",
  catId:   1,
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Chester Zoological Gardens - image supplied by Chester Zoo\" src=\"http://www.discovercheshire.co.uk/files/Chester-Zoogar96.jpg\" width=96 align=left border=0>Chester Zoo is almost as famous for its plants as it is for its animals, and has won many prizes for its horticultural displays over the years.",
  extent:  new GLatLngBounds(new GLatLng(53.224439,-2.876343),new GLatLng(53.224439,-2.876343))
}
  
Gardens[6] =
{
  id:      6,
  name:    "Cholmondeley Castle Gardens",
  catId:   1,
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Temple Garden at Cholmondeley Castle\" src=\"http://www.discovercheshire.co.uk/files/Cholmondeleygar96.jpg\" width=96 align=left border=0>The beautiful Temple Water Garden, with its rockery, lake and islands, is perhaps Cholmondeley's most iconic and popular feature.",
  extent:  new GLatLngBounds(new GLatLng(53.056634,-2.692376),new GLatLng(53.056634,-2.692376))
}
  
Gardens[7] =
{
  id:      7,
  name:    "Jodrell Bank Arboretum",
  catId:   1,
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Jodrell Bank from the Arboretum\" src=\"http://www.discovercheshire.co.uk/files/Jodrell-Bankgar96.jpg\" width=96 align=left border=0>The Jodrell Bank Arboretum covers 35 acres (14 ha) next to the University of Manchester’s world-famous&nbsp; Lovell radio telescope, which celebrates its 50th anniversary this year.",
  extent:  new GLatLngBounds(new GLatLng(53.23357,-2.302662),new GLatLng(53.23357,-2.302662))
}
  
Gardens[8] =
{
  id:      8,
  name:    "Lyme Park Gardens",
  catId:   1,
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Lyme Park Gardens\" src=\"http://www.discovercheshire.co.uk/files/Lyme-Parkgar96.jpg\" width=96 align=left border=0>Lyme Park's 17 acre Victorian garden boasts impressive bedding schemes, a sunken parterre, an Edwardian Rose Garden, herbaceous borders, a reflection lake and ravine garden<BR>",
  extent:  new GLatLngBounds(new GLatLng(53.337324,-2.054071),new GLatLng(53.337324,-2.054071))
}
  
Gardens[9] =
{
  id:      9,
  name:    "Ness Botanic Gardens",
  catId:   1,
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Nepata in Flower at Ness\" src=\"http://www.discovercheshire.co.uk/files/Nessgar96.jpg\" width=96 align=left border=0>Set on the banks of the River Dee with breathtaking views across to North Wales, Ness Botanic Gardens boasts international repute with seasonal flowers, shrubs and trees, in particular Rhododendron and Azalea all at their very best.",
  extent:  new GLatLngBounds(new GLatLng(53.273462,-3.040821),new GLatLng(53.273462,-3.040821))
}
  
Gardens[10] =
{
  id:      10,
  name:    "Norton Priory Museum & Gardens",
  catId:   1,
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Ornamental Gate into Norton Priory's Walled Garden\" src=\"http://www.discovercheshire.co.uk/files/Norton-Priory-gar96.jpg\" width=96 align=left border=0>This 38 acre (15ha) award winning museum and gardens also boasts excavated 12th century ruins and beautiful Undercroft. ",
  extent:  new GLatLngBounds(new GLatLng(53.341698,-2.678959),new GLatLng(53.341698,-2.678959))
}
  
Gardens[11] =
{
  id:      11,
  name:    "Tatton Park Gardens",
  catId:   1,
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Cosmos in Bloom in Tatton Park's Walled Garden\" src=\"http://www.discovercheshire.co.uk/files/Tattongar96.jpg\" width=96 align=left border=0>Tatton Park’s 50 acres of gardens enjoy year round colour and are some of the most impressive in Britain. ",
  extent:  new GLatLngBounds(new GLatLng(53.32952,-2.385934),new GLatLng(53.32952,-2.385934))
}
  
Gardens[12] =
{
  id:      12,
  name:    "Adlington Hall Gardens",
  catId:   2,
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Father Tiber Water Garden Adlington Hall\" src=\"http://www.discovercheshire.co.uk/files/AdlingtonGarthumb96.jpg\" width=96 align=left border=0>Attractive landscaped and wooded gardens provide the setting for Adlington Hall, home to the Legh family since 1315. <BR>",
  extent:  new GLatLngBounds(new GLatLng(53.320171,-2.142629),new GLatLng(53.320171,-2.142629))
}
  
Gardens[13] =
{
  id:      13,
  name:    "Bluebell Cottage Gardens",
  catId:   2,
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Bluebell Cottage Gardens image supplied by Bluebell Cottage Gardens\" src=\"http://www.discovercheshire.co.uk/files/Bluebell-thumb96.jpg\" width=96 align=left border=0>This secluded and tranquil garden is one of Cheshire’s best kept secrets.&nbsp; ",
  extent:  new GLatLngBounds(new GLatLng(53.29614,-2.625718),new GLatLng(53.29614,-2.625718))
}
  
Gardens[14] =
{
  id:      14,
  name:    "Bridgemere Garden World",
  catId:   2,
  regions: 1,
  desc:    "<DIV><IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Bridgemere Gardens\" src=\"http://www.discovercheshire.co.uk/files/Bridgemere-Gar96.jpg\" width=96 align=left border=0>Bridgemere Garden World is the ultimate gardeners’ paradise, growing top quality plants in more varieties than anywhere else in Britain.</DIV>",
  extent:  new GLatLngBounds(new GLatLng(52.990517,-2.409723),new GLatLng(52.990517,-2.409723))
}
  
Gardens[15] =
{
  id:      15,
  name:    "Dunge Valley Hidden Gardens",
  catId:   2,
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Dunge Valley Hidden Gardens\" src=\"http://www.discovercheshire.co.uk/files/Dunge-Valleygar96.jpg\" width=96 align=left border=0>A beautiful garden in a lovely woodland valley setting in the rolling Pennine Hills. ",
  extent:  new GLatLngBounds(new GLatLng(53.298679,-2.015006),new GLatLng(53.298679,-2.015006))
}
  
Gardens[16] =
{
  id:      16,
  name:    "Dunham Massey Hall Gardens",
  catId:   2,
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Orangery at Dunham Massey\" src=\"http://www.discovercheshire.co.uk/files/Dunham-Masseygar96.jpg\" width=96 align=left border=0>One of the North West’s great plantsman’s gardens with sweeping lawns, sumptuous borders and majestic trees.",
  extent:  new GLatLngBounds(new GLatLng(53.381615,-2.399936),new GLatLng(53.381615,-2.399936))
}
  
Gardens[17] =
{
  id:      17,
  name:    "Hare Hill Gardens",
  catId:   2,
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Hare Hill Gateway into Walled Garden\" src=\"http://www.discovercheshire.co.uk/files/Hare-Hill-gar96.jpg\" width=96 align=left border=0>This attractive but little-known 10 acre (4 ha) ornamental woodland garden is an ideal destination for visitors in search of peace and quiet; or for those fascinated by the range of plants that are grown here.<BR>",
  extent:  new GLatLngBounds(new GLatLng(53.285957,-2.181519),new GLatLng(53.285957,-2.181519))
}
  
Gardens[18] =
{
  id:      18,
  name:    "Little Moreton Hall Gardens",
  catId:   2,
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Little Moreton Hall from the Orchard\" src=\"http://www.discovercheshire.co.uk/files/Little-Moreton-Hallgar96.jpg\" width=96 align=left border=0>Britain’s most famous moated and timber-framed Tudor manor house has a delightful historic Knot Garden, together with traditional fruit trees of apple, pear, medlar and quince which blossom in May. ",
  extent:  new GLatLngBounds(new GLatLng(53.126709,-2.251094),new GLatLng(53.126709,-2.251094))
}
  
Gardens[19] =
{
  id:      19,
  name:    "Mount Pleasant Gardens",
  catId:   2,
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Sunflower, Poppies and Geums at Mount Pleasant Gardens\" src=\"http://www.discovercheshire.co.uk/files/Mount-Pleasantgar96.jpg\" width=96 align=left border=0>Set in the glorious heart of the rolling Cheshire countryside, near to Delamere Forest, these gardens boast year round interest, providing the ideal opportunity to meander through fine displays of traditional mixed planting, including a number of ponds with waterside species.",
  extent:  new GLatLngBounds(new GLatLng(53.216152,-2.700924),new GLatLng(53.216152,-2.700924))
}
  
Gardens[20] =
{
  id:      20,
  name:    "Rode Hall Gardens",
  catId:   2,
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Statue at Rode Hall\" src=\"http://www.discovercheshire.co.uk/files/Rode-Hall-Statuegar96.jpg\" width=96 align=left border=0>The extensive gardens at Rode Hall, which are set in a Repton Landscape, include a woodland garden with a terraced rock garden and a grotto.",
  extent:  new GLatLngBounds(new GLatLng(53.112279,-2.271927),new GLatLng(53.112279,-2.271927))
}
  
Gardens[21] =
{
  id:      21,
  name:    "Stapeley Water Gardens",
  catId:   2,
  regions: 1,
  desc:    "<P><IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Palms Tropical Oasis at Stapeley Water Gardens\" src=\"http://www.discovercheshire.co.uk/files/Stapeley-Water-Gardensgar96.jpg\" width=96 align=left border=0>Home to a myriad of dazzling and exotic plants, intriguing animals and all year round tropical temperatures, The Palms Tropical Oasis, at Stapeley Water Gardens, provides a glimpse a life in a tropical paradise. Watch the Tamarin monkeys play, sharks glide by and see the Giant Amazonian Waterlily, colourful hibiscus and spectacular bougainvillea.</P>",
  extent:  new GLatLngBounds(new GLatLng(53.05851,-2.496919),new GLatLng(53.05851,-2.496919))
}
  
Gardens[22] =
{
  id:      22,
  name:    "The Quinta Arboretum",
  catId:   2,
  regions: 1,
  desc:    "<P><IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Quinta Arboretum - image supplied by Tatton Garden Society\" src=\"http://www.discovercheshire.co.uk/files/Quinta-Arboretumgar96.jpg\" width=96 align=left border=0>The&nbsp;28 acre Quinta Arboretum contains over 5000 trees of some 2000 species, with National Collections of&nbsp; ash, oak and pine.</P>",
  extent:  new GLatLngBounds(new GLatLng(53.201214,-2.29944),new GLatLng(53.201214,-2.29944))
}
  
Gardens[23] =
{
  id:      23,
  name:    "Walton Hall & Gardens",
  catId:   2,
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Walton Hall Gardens\" src=\"http://www.discovercheshire.co.uk/files/Walton-Hall96.jpg\" width=96 align=left border=0>Walton Hall Gardens contain&nbsp;a fine collection of specimen trees and shrubs and an extensive display of rhododendrons and azaleas in early summer.",
  extent:  new GLatLngBounds(new GLatLng(53.360994,-2.601119),new GLatLng(53.360994,-2.601119))
}



var GC = [];
GC[1] = "Gardens of Distinction";
GC[2] = "Gardens of Discovery";
GC[3] = "Gardens of Mersey Forest";








var Routes = [];
  
Routes[1] =
{
  refnum:  "DC001",
  name:    "A Walk around Haslington",
  regions: 1,
  desc:    "<P><IMG height=96 alt=walker src=\"http://www.discovercheshire.co.uk/files/haslington.jpg\" width=96 align=left border=0>Come and enjoy this 6.5km/4mile circular walk along country lanes and public footpaths. The route currently has approximately 22 stiles and 8 kissing gates with fairly level terrain.</P>",
  extent:  new GLatLngBounds(new GLatLng(53.101871,-2.392683),new GLatLng(53.090864,-2.356523)),
  start:   new GLatLng(53.100003,-2.392614)
}
  
Routes[2] =
{
  refnum:  "DC002",
  name:    "A Walk around Nantwich and Acton",
  regions: 1,
  desc:    "<BR><IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=Acton src=\"http://www.discovercheshire.co.uk/files/Cheshire/Images/Attractions/Thumbnails/R96-Acton-Through-Tree.jpg\" width=96 align=left border=0>Discover one of the most historic and picturesque areas in Cheshire, with fine Elizabethan buildings and sandstone churches. Explore the local countryside following footpaths, towpaths and drovers roads past splendid houses and across battlefields.<BR>",
  extent:  new GLatLngBounds(new GLatLng(53.075794,-2.549231),new GLatLng(53.053608,-2.520606)),
  start:   new GLatLng(53.066722,-2.520601)
}
  
Routes[3] =
{
  refnum:  "DC003",
  name:    "A Walk around Wybunbury",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"\" src=\"http://www.discovercheshire.co.uk/files/Wybunbury-Church-Thumb.jpg\" width=96 align=left border=0>Come and enjoy these 1.6km (1 mile) and 8km (5 miles) circular walks along country lanes and public footpaths. For both walks start in the bottom car park next to the Swan Inn in Wybunbury.",
  extent:  new GLatLngBounds(new GLatLng(53.049939,-2.464491),new GLatLng(53.020699,-2.432376)),
  start:   new GLatLng(53.045123,-2.446176)
}
  
Routes[4] =
{
  refnum:  "MF009",
  name:    "Baker Way",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Delamere Forest\" src=\"http://www.discovercheshire.co.uk/files/Delamere-Path.jpg\" width=96 align=left border=0>The extended Baker Way links the heart of Chester with Delamere Forest Park. The core of the route is provided by the original Baker Way, a long established route from Christleton to Brines Brow Picnic Area.",
  extent:  new GLatLngBounds(new GLatLng(53.236305,-2.844076),new GLatLng(53.176666,-2.664407)),
  start:   new GLatLng(53.196209,-2.878905)
}
  
Routes[5] =
{
  refnum:  "DC007",
  name:    "Biking the Backroads",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Marbury Country Park's Lime Avenue in Autumn\" src=\"http://www.discovercheshire.co.uk/files/Marbury-Lime-Avenue-Thumb.jpg\" width=96 align=left border=0>A gentle ride of 20km/13 miles around the lanes of Anderton and Great Budworth. ",
  extent:  new GLatLngBounds(new GLatLng(53.315131,-2.562621),new GLatLng(53.270459,-2.500692)),
  start:   new GLatLng(53.281381,-2.523533)
}
  
Routes[6] =
{
  refnum:  "DC008",
  name:    "Bishop Bennet Way",
  regions: 1,
  desc:    "<P><IMG height=96 alt=horse src=\"http://www.discovercheshire.co.uk/files/horse1.jpg\" width=96 align=left border=0>A 55 km (34 mile) route for horse riders following bridleways, byways and minor roads through the countryside of southwest Cheshire.</P>",
  extent:  new GLatLngBounds(new GLatLng(53.137223,-2.859628),new GLatLng(52.984263,-2.676891)),
  start:   new GLatLng(53.131003,-2.707605)
}
  
Routes[12] =
{
  refnum:  "DC012",
  name:    "Crossroads around Congleton",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Marton Church\" src=\"http://www.discovercheshire.co.uk/files/Marton-Church-96.jpg\" width=96 align=left border=0>A challenging 32km/20 mile ride for casual and family cyclists. Allow 3-5 hours.",
  extent:  new GLatLngBounds(new GLatLng(53.211289,-2.258355),new GLatLng(53.130227,-2.145512)),
  start:   new GLatLng(53.157784,-2.192209)
}
  
Routes[13] =
{
  refnum:  "DC013",
  name:    "Cycling the Salt Ride",
  regions: 1,
  desc:    "<IMG height=96 alt=\"coun try lane\" src=\"http://www.discovercheshire.co.uk/files/merelake-way.jpg\" width=96 align=left border=0>A&nbsp; 26.5 km/16.5 mile circular bike ride starting at the Salt Line near Sandbach ",
  extent:  new GLatLngBounds(new GLatLng(53.152779,-2.426285),new GLatLng(53.097048,-2.306888)),
  start:   new GLatLng(53.120627,-2.335748)
}
  
Routes[14] =
{
  refnum:  "DC014",
  name:    "Dane Valley",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Brereton Heath in Autumn\" src=\"http://www.discovercheshire.co.uk/files/Brereton-Heath-Autumn.jpg\" width=96 align=left border=0>A route from Brereton Local Nature Reserve crossing the River Dane through to Swettenham.",
  extent:  new GLatLngBounds(new GLatLng(53.204578,-2.306866),new GLatLng(53.184193,-2.283479)),
  start:   new GLatLng(53.184233,-2.306556)
}
  
Routes[20] =
{
  refnum:  "DC015",
  name:    "Fruits of the Forest",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 4px\" height=96 alt=\"Delamere Forest\" src=\"http://www.discovercheshire.co.uk/files/Cheshire/Images/Attractions/Thumbnails/Delamere-Path-1-Sept-06-R-W.jpg\" width=96 align=left border=0>Explore the rolling countryside at the northern end of Cheshire’s sandstone spine with a hilly ride from Delamere around the lanes of Kelsall and Utkinton.",
  extent:  new GLatLngBounds(new GLatLng(53.23857,-2.717186),new GLatLng(53.183573,-2.664197)),
  start:   new GLatLng(53.226469,-2.665204)
}
  
Routes[21] =
{
  refnum:  "DC016",
  name:    "Grit and Gears II",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Tegg's Nose from Reservoir\" src=\"http://www.discovercheshire.co.uk/files/Teggs-Nose-Reservoir-Thumb.jpg\" width=96 align=left border=0>A challenging route over wild terrain for experienced riders.<BR>",
  extent:  new GLatLngBounds(new GLatLng(53.255597,-2.08478),new GLatLng(53.220109,-1.985077)),
  start:   new GLatLng(53.255605,-2.07442)
}
  
Routes[22] =
{
  refnum:  "DC018",
  name:    "Gritstone Trail North",
  regions: 1,
  desc:    "<DIV><IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"\" src=\"http://www.discovercheshire.co.uk/files/Gritstone-Trail-1-Thumb.jpg\" width=96 align=left border=0>The first part of the Trail leads the walker along the stunning Kerridge ridge, and takes in ‘White Nancy’, one of the county’s most famous landmarks. It begins at Disley Railway Station and ends at Tegg’s Nose Country Park.</DIV>",
  extent:  new GLatLngBounds(new GLatLng(53.358376,-2.092943),new GLatLng(53.256194,-2.02782)),
  start:   new GLatLng(53.357731,-2.04107)
}
  
Routes[24] =
{
  refnum:  "DC020",
  name:    "Hamlets and Hedgerows",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Canal Boat at Wrenbury\" src=\"http://www.discovercheshire.co.uk/files/Wrenbury-Canal-Boat.jpg\" width=96 align=left border=0>A hilly ride of 22km (14 miles) around the country lanes and alongside the canals of Wrenbury and Marbury.",
  extent:  new GLatLngBounds(new GLatLng(53.027467,-2.680892),new GLatLng(52.976413,-2.592158)),
  start:   new GLatLng(53.024899,-2.605983)
}
  
Routes[27] =
{
  refnum:  "DC021",
  name:    "Marbury",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Marbury Mere\" src=\"http://www.discovercheshire.co.uk/files/Cheshire/Images/Attractions/Thumbnails/96R-Marbury-Mere-and-Marbur.jpg\" width=96 align=left border=0>Tucked away amongst the rolling hills of the Cheshire/Shropshire border, Marbury is a wonderful example of an unspoilt, tranquil English village.",
  extent:  new GLatLngBounds(new GLatLng(53.007865,-2.670153),new GLatLng(52.995236,-2.648299)),
  start:   new GLatLng(53.00669,-2.654066)
}
  
Routes[31] =
{
  refnum:  "MF114",
  name:    "Moore Nature Reserve",
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Moore bubble.JPG\" align=left border=0>Discover this fantastic nature reserve situated between the Manchester Ship Canal and the River Mersey.",
  extent:  new GLatLngBounds(new GLatLng(53.373345,-2.647661),new GLatLng(53.361716,-2.605839)),
  start:   new GLatLng(53.364184,-2.634672)
}
  
Routes[43] =
{
  refnum:  "DC035",
  name:    "Parkgate",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=Parkgate src=\"http://www.discovercheshire.co.uk/files/Cheshire/Images/Attractions/Thumbnails/96R-Parkgate-1-Sept-06-R-W-A.jpg\" width=96 align=left border=0>Parkgate, with its tremendous views across the internationally important Dee Estuary towards the Welsh Hills, provides the setting for this fascinating, yet gentle walk, following the Parade, with several good pubs and cafes along the way.",
  extent:  new GLatLngBounds(new GLatLng(53.309097,-3.096461),new GLatLng(53.292562,-3.074351)),
  start:   new GLatLng(53.302545,-3.089744)
}
  
Routes[44] =
{
  refnum:  "DC036",
  name:    "Raw Head",
  regions: 1,
  desc:    "<IMG height=96 alt=\"Raw Head\" src=\"http://www.discovercheshire.co.uk/files/Cheshire/Images/Attractions/Thumbnails/96R-Rawhead-%28L%29.jpg\" width=96 align=left border=0>A circular route from Burwardsley, starting at the Candle Workshops (Cheshire Workshops) through to Raw Head and back to Burwardsley.",
  extent:  new GLatLngBounds(new GLatLng(53.104646,-2.738328),new GLatLng(53.085894,-2.706321)),
  start:   new GLatLng(53.102901,-2.713553)
}
  
Routes[45] =
{
  refnum:  "DC037",
  name:    "Riding the Ridges",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Tegg's Nose Country Park\" src=\"http://www.discovercheshire.co.uk/files/Teggs-Nose-Reservoir-Thumb.jpg\" width=96 align=left border=0>A ride around Pott Shrigley and Rainow.",
  extent:  new GLatLngBounds(new GLatLng(53.322451,-2.101449),new GLatLng(53.254573,-2.024331)),
  start:   new GLatLng(53.257943,-2.073153)
}
  
Routes[46] =
{
  refnum:  "MF003",
  name:    "Risley Moss Local Nature Reserve",
  regions: 2,
  desc:    "<IMG style=\"MARGIN-RIGHT: 5px\" height=99 alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/risley moss june 2005 002.JPG\" width=84 align=left border=0>Explore Risley Moss Local Nature Reserve on a well surfaced path around this circular route.</NOSCRIPT>\n<SCRIPT language=javascript id=dstb-id>if(typeof(dstb)!= \"undefined\"){ dstb();}</SCRIPT>\n </NOSCRIPT>\n<SCRIPT language=javascript id=dstb-id>if(typeof(dstb)!= \"undefined\"){ dstb();}</SCRIPT>",
  extent:  new GLatLngBounds(new GLatLng(53.424825,-2.507878),new GLatLng(53.419585,-2.500916)),
  start:   new GLatLng(53.423868,-2.505381)
}
  
Routes[48] =
{
  refnum:  "DC038",
  name:    "River to Ridge",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Beeston and Peckforton Castles\" src=\"http://www.discovercheshire.co.uk/files/Beeston-Castle-and-nearby-h.jpg\" width=96 align=left border=0>An enjoyable 35 km/22 mile ride from the River Dee through pretty Cheshire villages up to the Peckforton Hills and back. <BR>",
  extent:  new GLatLngBounds(new GLatLng(53.120636,-2.878939),new GLatLng(53.056612,-2.712)),
  start:   new GLatLng(53.083625,-2.878121)
}
  
Routes[49] =
{
  refnum:  "DC057",
  name:    "Sandstone Trail North",
  regions: 1,
  desc:    "<P><IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Enjoying Delamere Forest\" src=\"http://www.discovercheshire.co.uk/files/Delamere-Joggers-Thumb.jpg\" width=96 align=left border=0>Stride out along the Sandstone Trail and sample some of the finest walking in Cheshire. Follow the ridge of sandstone that rises dramatically from the Cheshire plain and enjoy this invigorating walk at any time of year.</P>\n<P>The original Sandstone Trail officially opened in 1974. It has recently been extended so it now links the towns of Frodsham and Witchurch. This not only makes it more accessible by public transport but also means you can enjoy some of the excellent facilities available in each town.</P>\n<DIV>The Trail has been split into three sections of 18 or 19km or about 11miles which most people should find an enjoyable day’s walk. Because the route follows the sandstone ridge there are few facilities along the Trail – mostly pubs. Cafes and shops are a short distance away. Please ",
  extent:  new GLatLngBounds(new GLatLng(53.295635,-2.7381),new GLatLng(53.190476,-2.684827)),
  start:   new GLatLng(53.295771,-2.724507)
}
  
Routes[50] =
{
  refnum:  "DC043",
  name:    "Shutlingsloe",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"View of Wildboarclough from Shutlingsloe\" src=\"http://www.discovercheshire.co.uk/files/WildboarcloughfromShutlings.jpg\" width=96 align=left border=0>Stone walls, old barns and upland meadows dotted with harebells set the scene for this taste of Cheshire's hill country. ",
  extent:  new GLatLngBounds(new GLatLng(53.237204,-2.072),new GLatLng(53.209873,-2.025999)),
  start:   new GLatLng(53.23717,-2.057513)
}
  
Routes[51] =
{
  refnum:  "DC044",
  name:    "Signals and Saltmarsh",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Parkgate on the Dee Estuary\" src=\"http://www.discovercheshire.co.uk/files/Parkgate.jpg\" width=96 align=left border=0>A gentle 19km/12mile ride from Willaston to the Dee Estuary and back.",
  extent:  new GLatLngBounds(new GLatLng(53.29776,-3.082552),new GLatLng(53.260445,-2.974987)),
  start:   new GLatLng(53.288354,-3.001473)
}
  
Routes[53] =
{
  refnum:  "MF014",
  name:    "Spud Wood & Lymm",
  regions: 2,
  desc:    "<IMG height=86 alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Spud Wood and Lymm bubble.JPG\" width=125 align=left border=0>From Spud Wood, follow the Bridgewater Canal to the picturesque village of Lymm before returning on part of the Trans Pennine Trail and quiet country lanes.",
  extent:  new GLatLngBounds(new GLatLng(53.389786,-2.476581),new GLatLng(53.381902,-2.444375)),
  start:   new GLatLng(53.382769,-2.448406)
}
  
Routes[57] =
{
  refnum:  "DC047",
  name:    "Utkinton",
  regions: 1,
  desc:    "<P><IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Sunset over the Cheshire Plain\" src=\"http://www.discovercheshire.co.uk/files/Cheshire/Images/Attractions/Thumbnails/96-Sunset.jpg\" width=96 align=left border=0>Utkinton Hall and the beautiful gardens of Tirley Garth are just some of the sights to see on this walk through Cheshire’s dairy and fruit farming country.</P>",
  extent:  new GLatLngBounds(new GLatLng(53.2,-2.696025),new GLatLng(53.173627,-2.668981)),
  start:   new GLatLng(53.190293,-2.695249)
}
  
Routes[59] =
{
  refnum:  "MF010",
  name:    "Weaver Wanderer",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Path on Whitegate Way\" src=\"http://www.discovercheshire.co.uk/files/Whitegate-Way-Path-2.jpg\" width=96 align=left border=0>An easy 18km/11 mile ride including 7km off road cycling.<BR>",
  extent:  new GLatLngBounds(new GLatLng(53.218742,-2.577492),new GLatLng(53.201722,-2.515326)),
  start:   new GLatLng(53.207097,-2.516096)
}
  
Routes[61] =
{
  refnum:  "DC045",
  name:    "The Wizard Trail",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Hare Hill Gardens\" src=\"http://www.discovercheshire.co.uk/files/Hare-Hill-Gateway.jpg\" width=96 align=left border=0>A scenic ride exploring the rolling parkland around Alderley and Henbury.",
  extent:  new GLatLngBounds(new GLatLng(53.292139,-2.245636),new GLatLng(53.249548,-2.180628)),
  start:   new GLatLng(53.292201,-2.211759)
}
  
Routes[62] =
{
  refnum:  "DC041",
  name:    "Sandstone Trail Central",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Sunrise over Shropshire Union Canal\" src=\"http://www.discovercheshire.co.uk/files/Sunrise-over-Shropshire-Uni.jpg\" width=96 align=left border=0>The central section of the Sandstone Trail takes you through the heart of Cheshire’s fruit farming and dairy country, taking in the unique Beeston Castle and beautiful Peckforton Hills along the way.",
  extent:  new GLatLngBounds(new GLatLng(53.190263,-2.73611),new GLatLng(53.079471,-2.681842)),
  start:   new GLatLng(53.190461,-2.694429)
}
  
Routes[63] =
{
  refnum:  "DC042",
  name:    "Sandstone Trail South",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"View from Bickerton Hill\" src=\"http://www.discovercheshire.co.uk/files/BHV.jpg\" width=96 align=left border=0>The southern section of the Sandstone Trail skirts the picturesque Bickerton Hill and Maiden Castle Iron Age Hill Fort, before continuing on its way towards the pretty town of Whitchurch, where the Trail finishes.",
  extent:  new GLatLngBounds(new GLatLng(53.079043,-2.754037),new GLatLng(52.968503,-2.687616)),
  start:   new GLatLng(53.079227,-2.724975)
}
  
Routes[64] =
{
  refnum:  "DC017",
  name:    "Gritstone Trail Central",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Tegg's Nose view to Shutlingsloe\" src=\"http://www.discovercheshire.co.uk/files/Teggs-Shutlingsloe.jpg\" width=96 align=left border=0>This section of the Trail leads the walker from the dramatic scenery of Tegg’s Nose Country Park to the pretty Timbersbrook picnic area, via ‘The Cloud’, where a steep climb is rewarded with stunning views of the surrounding countryside.",
  extent:  new GLatLngBounds(new GLatLng(53.256091,-2.158865),new GLatLng(53.161612,-2.070862)),
  start:   new GLatLng(53.25616,-2.075141)
}
  
Routes[65] =
{
  refnum:  "DC019",
  name:    "Gritstone Trail South",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Mow Cop\" src=\"http://www.discovercheshire.co.uk/files/Mow-Cop96.jpg\" width=96 align=left border=0>This section of the Trail guides the walker from Timbersbrook picnic area to the Trail’s end, at Kidsgrove, admiring the sights of the area’s industrial heritage along the way.",
  extent:  new GLatLngBounds(new GLatLng(53.162977,-2.254312),new GLatLng(53.086655,-2.15824)),
  start:   new GLatLng(53.16177,-2.158482)
}
  
Routes[66] =
{
  refnum:  "DC049",
  name:    "Walking the Trackways",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Shropshire Union Canal at Dawn\" src=\"http://www.discovercheshire.co.uk/files/Shropshire-Union-at-Dawn.jpg\" width=96 align=left border=0>Ancient paths, Roman roads, canals and railways criss-cross the landscape, showing the strong links Crewe and Nantwich have with the development of the transport age.",
  extent:  new GLatLngBounds(new GLatLng(53.144213,-2.550031),new GLatLng(53.074614,-2.448292)),
  start:   new GLatLng(53.074188,-2.549138)
}
  
Routes[67] =
{
  refnum:  "DC050",
  name:    "Walking the Wildside",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Cheshire Roadside Verges\" src=\"http://www.discovercheshire.co.uk/files/roadside-verges.jpg\" width=96 align=left border=0>Take a walk on the wildside and discover mysterious mosses, ancient hedgerows and other hidden gems in the South Cheshire countryside.<BR>",
  extent:  new GLatLngBounds(new GLatLng(53.129251,-2.450935),new GLatLng(53.067268,-2.372313)),
  start:   new GLatLng(53.118772,-2.448675)
}
  
Routes[98] =
{
  refnum:  "DC048",
  name:    "Walking the Past",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Traditional Architecture in Nantwich\" src=\"http://www.discovercheshire.co.uk/files/nantwich-historic-building.jpg\" width=96 align=left border=0>Step back in time and explore the ‘olde worlde’ villages around Crewe and Nantwich. Discover historical buildings, old battle sties and learn how people used to live.<BR>",
  extent:  new GLatLngBounds(new GLatLng(53.074184,-2.54915),new GLatLng(53.042511,-2.398401)),
  start:   new GLatLng(53.066576,-2.398616)
}
  
Routes[99] =
{
  refnum:  "MF013",
  name:    "Trans Pennine Trail",
  regions: 2,
  desc:    "<IMG height=86 alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/TPT bubble.JPG\" width=120 align=left border=0>The Trans Pennine Trail is a coast-to-coast route across the entire breadth of England from Southport to Hornsea. This is the Mersey section.",
  extent:  new GLatLngBounds(new GLatLng(53.648009,-3.05664),new GLatLng(53.336546,-2.436669)),
  start:   new GLatLng(53.648321,-3.020685)
}
  
Routes[101] =
{
  refnum:  "MF101",
  name:    "Trans Pennine Trail Ainsdale to Maghull",
  regions: 2,
  desc:    "<IMG height=103 alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/TPT Ainsdale to Maghull bubble.JPG\" width=77 align=left border=0>The Trans Pennine Trail is a coast-to-coast route across the entire breadth of England from Southport to Hornsea. This section is suitable for horse riding.",
  extent:  new GLatLngBounds(new GLatLng(53.588099,-3.03923),new GLatLng(53.518213,-2.964273)),
  start:   new GLatLng(53.588099,-3.03923)
}
  
Routes[103] =
{
  refnum:  "MF058",
  name:    "Culcheth Linear Park",
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Culcheth Linear Park bubble.JPG\" align=left border=0>Thousands of trees have been planted and wildflowers sown along the former route of the Lowton – Manchester branch of the local railway.<BR>",
  extent:  new GLatLngBounds(new GLatLng(53.461245,-2.547439),new GLatLng(53.448367,-2.520138)),
  start:   new GLatLng(53.46124,-2.54743)
}
  
Routes[105] =
{
  refnum:  "MF106",
  name:    "Sefton Woods and Dunes (linear)",
  regions: 2,
  desc:    "Description inside the route's information window.<br>",
  extent:  new GLatLngBounds(new GLatLng(53.605582,-3.103638),new GLatLng(53.496672,-3.038401)),
  start:   new GLatLng(53.602023,-3.040963)
}
  
Routes[108] =
{
  refnum:  "DC027",
  name:    "NCN Route 70",
  regions: 1,
  desc:    "<P><IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Cyclist at Marbury, South Cheshire\" src=\"http://www.discovercheshire.co.uk/files/Cyclist-at-Marbury.jpg\" width=96 align=left border=0>Explore the Cheshire Cycleway, a 176mile/282km journey through some of Cheshire’s finest scenery. Rich fertile fields, rocky ridges, rivers and canals combine to ensure the view is always enticing. Friendly villages and a whole host of attractions mean there’s always somewhere interesting to stop, stretch your legs and enjoy a bite to eat.</P>",
  extent:  new GLatLngBounds(new GLatLng(53.35631,-3.084049),new GLatLng(52.984283,-2.018901)),
  start:   new GLatLng(53.209114,-2.892865)
}
  
Routes[109] =
{
  refnum:  "DC026",
  name:    "NCN Route 55",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"NCN Route 55 Signage\" src=\"http://www.discovercheshire.co.uk/files/Route55-sign96.jpg\" width=96 align=left border=0>A part of Route 55 which takes in the Cheshire route, Congleton to Marple.<BR>",
  extent:  new GLatLngBounds(new GLatLng(53.379354,-2.250082),new GLatLng(53.147049,-2.079768)),
  start:   new GLatLng(53.146855,-2.171567)
}
  
Routes[111] =
{
  refnum:  "DC031",
  name:    "NCN Route 75",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Canalside at Audlem\" src=\"http://www.discovercheshire.co.uk/files/audlem-canal96.jpg\" width=96 align=left border=0>Route 75 takes in the Cheshire route from Audlem to Winsford.<BR>",
  extent:  new GLatLngBounds(new GLatLng(53.192604,-2.5736),new GLatLng(52.96334,-2.459258)),
  start:   new GLatLng(52.963244,-2.459544)
}
  
Routes[113] =
{
  refnum:  "MF085",
  name:    "Pex Hill",
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Pex Hill bubble.JPG\" align=left border=0>An unusual stunted oak woodland surrounded by heathland, with excellent views of the Mersey Estuary and the mountains of North Wales.<BR>",
  extent:  new GLatLngBounds(new GLatLng(53.393598,-2.750966),new GLatLng(53.390932,-2.749088)),
  start:   new GLatLng(53.393604,-2.749926)
}
  
Routes[114] =
{
  refnum:  "MF070",
  name:    "St Helens Canal",
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/St Helens Canal bubble.JPG\" align=left border=0>Following part of the towpath and passing close to an historic village, this route offer stretches of surprisingly attractive scenery.<BR>",
  extent:  new GLatLngBounds(new GLatLng(53.451233,-2.643895),new GLatLng(53.434193,-2.627372)),
  start:   new GLatLng(53.451042,-2.636278)
}
  
Routes[116] =
{
  refnum:  "MF030",
  name:    "Helsby Quarry Woodland Park",
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Helsby Quarry bubble.jpg\" align=left border=0>A walk which, winding around the hill, reveals how the local sandstone has shaped Helsby.<BR>",
  extent:  new GLatLngBounds(new GLatLng(53.275223,-2.764803),new GLatLng(53.269165,-2.752376)),
  start:   new GLatLng(53.269104,-2.763812)
}
  
Routes[117] =
{
  refnum:  "MF050",
  name:    "Murdishaw Wood",
  regions: 2,
  desc:    "<IMG height=114 alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Murdishaw bubble 2.JPG\" width=86 align=left border=0>A winding route through a wooded valley drenched with bluebells and home to tremendous biodiversity.<BR>",
  extent:  new GLatLngBounds(new GLatLng(53.323721,-2.666089),new GLatLng(53.315682,-2.653581)),
  start:   new GLatLng(53.318219,-2.665508)
}
  
Routes[118] =
{
  refnum:  "MF120",
  name:    "Lydiate Loop",
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Lydiate Loop bubble.JPG\" align=left border=0>Delve into the mysterious past of the Lancashire village of Lydiate on this 5½ mile circuit.<BR>",
  extent:  new GLatLngBounds(new GLatLng(53.540942,-2.974626),new GLatLng(53.517852,-2.943244)),
  start:   new GLatLng(53.523859,-2.950822)
}
  
Routes[119] =
{
  refnum:  "MF074",
  name:    "The Maghull Trail",
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/The Maghull Trail bubble.JPG\" align=left border=0>Discover the home town of Frank Hornby, of Hornby Trains fame.<BR>",
  extent:  new GLatLngBounds(new GLatLng(53.509341,-2.955869),new GLatLng(53.495542,-2.927494)),
  start:   new GLatLng(53.506407,-2.92977)
}
  
Routes[120] =
{
  refnum:  "MF118",
  name:    "Cabin Hill National Nature Reserve",
  regions: 2,
  desc:    "<IMG height=114 alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Cabin Hill bubble.JPG\" width=86 align=left border=0>The nature reserve is made up of beach, sand dunes, dune pasture and wet slacks. It is an important home for rare species.<BR></NOSCRIPT>\n<SCRIPT language=javascript id=dstb-id>if(typeof(dstb)!= \"undefined\"){ dstb();}</SCRIPT>\n</NOSCRIPT>\n<SCRIPT language=javascript id=dstb-id>if(typeof(dstb)!= \"undefined\"){ dstb();}</SCRIPT>",
  extent:  new GLatLngBounds(new GLatLng(53.546977,-3.085063),new GLatLng(53.535534,-3.067343)),
  start:   new GLatLng(53.546792,-3.075021)
}
  
Routes[121] =
{
  refnum:  "MF121",
  name:    "Daresbury Firs",
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Daresbury Firs bubble.JPG\" align=left border=0>Enjoy birdsong and the fresh scent of conifers as you walk in peace through this former 'tree factory'.",
  extent:  new GLatLngBounds(new GLatLng(53.342306,-2.640438),new GLatLng(53.33755,-2.633232)),
  start:   new GLatLng(53.342344,-2.633303)
}
  
Routes[122] =
{
  refnum:  "MF123",
  name:    "Lewis Carroll Centenary Wood",
  regions: 2,
  desc:    "<IMG height=119 alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Lewis Carroll bubble 3.JPG\" width=83 align=left border=0>\"…she was a little startled by seeing the Cheshire-Cat sitting on a bough of a tree a few yards off.\"",
  extent:  new GLatLngBounds(new GLatLng(53.318466,-2.611996),new GLatLng(53.317685,-2.611585)),
  start:   new GLatLng(53.317682,-2.611838)
}
  
Routes[123] =
{
  refnum:  "MF119",
  name:    "Ellesmere Port Canal Port Trail",
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Ellesmere Port Canal Port Trail bubble.JPG\" align=left border=0>Explore Ellesmere Port's past as a canal transhipment port on this short tour of what was the town's industrial hub.",
  extent:  new GLatLngBounds(new GLatLng(53.289951,-2.89504),new GLatLng(53.287545,-2.889628)),
  start:   new GLatLng(53.287542,-2.890057)
}
  
Routes[124] =
{
  refnum:  "MF115",
  name:    "Woodland Path",
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Woodland Path bubble.JPG\" align=left border=0>Ainsdale National Nature Reserve is a must for lovers of wildlife. This easy walk takes you to the heart of its woodlands.<BR>",
  extent:  new GLatLngBounds(new GLatLng(53.582979,-3.074198),new GLatLng(53.565692,-3.061114)),
  start:   new GLatLng(53.565622,-3.070356)
}
  
Routes[125] =
{
  refnum:  "MF116",
  name:    "Marbury Country Park and Anderton Boat Lift",
  regions: 2,
  desc:    "<IMG height=92 alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Marbury and Anderton bubble 2.JPG\" width=113 align=left border=0>Located near Northwich, the Anderton Boat Lift is one of the greatest monuments to Britain's last canal age and known as the \"Cathedral of the Canals\".<BR>",
  extent:  new GLatLngBounds(new GLatLng(53.285139,-2.535368),new GLatLng(53.273373,-2.508899)),
  start:   new GLatLng(53.28246,-2.522186)
}
  
Routes[126] =
{
  refnum:  "MF124",
  name:    "Marbury Country Park to the Flashes",
  regions: 2,
  desc:    "<IMG height=86 alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Marbury and Anderton bubble.JPG\" width=114 align=left border=0>See the highlights of The Mersey Forest's flagship land reclamation project at Northwich.",
  extent:  new GLatLngBounds(new GLatLng(53.284686,-2.522925),new GLatLng(53.264206,-2.494722)),
  start:   new GLatLng(53.28246,-2.522186)
}
  
Routes[127] =
{
  refnum:  "MF117",
  name:    "Woolton Woods and Camphill",
  regions: 2,
  desc:    "<IMG height=114 alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Woolton and Camphill bubble.JPG\" width=86 align=left border=0>A seven acre country park in the suburbs of Liverpool featuring beautiful ornamental gardens and mature woodland.",
  extent:  new GLatLngBounds(new GLatLng(53.370297,-2.867965),new GLatLng(53.365017,-2.864539)),
  start:   new GLatLng(53.36528,-2.864668)
}
  
Routes[128] =
{
  refnum:  "MF122",
  name:    "Croxteth Hall Country Park and Littlewood",
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Croxteth Hall bubble.JPG\" align=left border=0>Follow the former coach road linking the stately homes of Croxteth and Knowsley through an attractive old oak wood, and visit Croxteth's Country Park.",
  extent:  new GLatLngBounds(new GLatLng(53.445002,-2.891286),new GLatLng(53.441268,-2.857525)),
  start:   new GLatLng(53.442189,-2.891227)
}
  
Routes[130] =
{
  refnum:  "MF073",
  name:    "The Rimrose Valley",
  regions: 2,
  desc:    "<IMG height=86 alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/The Rimrose Valley bubble.JPG\" width=114 align=left border=0>The Rimrose Valley running north-south between Crosby and Litherland forms a green finger of countryside into the urban area.",
  extent:  new GLatLngBounds(new GLatLng(53.485128,-3.012746),new GLatLng(53.466013,-2.99905)),
  start:   new GLatLng(53.465963,-3.005018)
}
  
Routes[131] =
{
  refnum:  "MF027",
  name:    "Mersey Valley Timberland Trail (linear)",
  regions: 2,
  desc:    "<IMG height=105 alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/MVTT bubble.JPG\" width=93 align=left border=0>A long distance linear walk on roads and country paths linking town and countryside to parks, woodlands and other open spaces.",
  extent:  new GLatLngBounds(new GLatLng(53.381467,-2.743271),new GLatLng(53.328877,-2.446627)),
  start:   new GLatLng(53.329962,-2.73897)
}
  
Routes[132] =
{
  refnum:  "MF017",
  name:    "Wildflower Line and Halewood Park",
  regions: 2,
  desc:    "<IMG height=119 alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Wildflower bubble.JPG\" width=102 align=left border=0>An easy ride along the former Cheshire Lines Committee railway.",
  extent:  new GLatLngBounds(new GLatLng(53.406374,-2.891304),new GLatLng(53.362099,-2.838275)),
  start:   new GLatLng(53.406187,-2.891276)
}
  
Routes[133] =
{
  refnum:  "MF025",
  name:    "St Helens Lanes",
  regions: 2,
  desc:    "<IMG height=89 alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/St Helens Lanes bubble.JPG\" width=102 align=left border=0>It is hard to imagine that the peaceful countryside around Garswood and Rainford was once a major coal mining centre during the Industrial Revolution.",
  extent:  new GLatLngBounds(new GLatLng(53.52317,-2.783613),new GLatLng(53.484308,-2.670141)),
  start:   new GLatLng(53.487936,-2.670528)
}
  
Routes[134] =
{
  refnum:  "MF026",
  name:    "Sefton Lanes",
  regions: 2,
  desc:    "<IMG height=96 alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Sefton Lanes bubble.JPG\" width=108 align=left border=0>This ride takes you near to Crosby Coastal Park which stretches from Waterloo to the estuary of the River Alt.",
  extent:  new GLatLngBounds(new GLatLng(53.526434,-3.056442),new GLatLng(53.487808,-2.984296)),
  start:   new GLatLng(53.487391,-3.039422)
}
  
Routes[135] =
{
  refnum:  "MF102",
  name:    "Wirral Wanderings",
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Wirral bubble.JPG\" align=left border=0>Along the Wirral Way to charming Parkgate, one of the area's 'lost' ferry ports for Ireland.",
  extent:  new GLatLngBounds(new GLatLng(53.309784,-3.082847),new GLatLng(53.287492,-2.978724)),
  start:   new GLatLng(53.30664,-2.979426)
}
  
Routes[136] =
{
  refnum:  "MF001",
  name:    "Thornton-le-Moors to Frodsham Greenway (via Ince)",
  regions: 3,
  desc:    "<IMG height=84 alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/TleM to F G bubble2.JPG\" width=112 align=left border=0>Peaceful country roads pass by villages and welcoming pubs. Farm tracks cross the low-lying farmland, lagoons and mud flats, home to many birds and wildlife.",
  extent:  new GLatLngBounds(new GLatLng(53.296821,-2.839329),new GLatLng(53.267165,-2.722181)),
  start:   new GLatLng(53.266402,-2.838733)
}
  
Routes[139] =
{
  refnum:  "DC034",
  name:    "Northwich Community Woodlands",
  regions: 3,
  desc:    "This circular route starts and ends at Anderton Nature Park and meanders through the fantastic countryside of the Weaver Valley.",
  extent:  new GLatLngBounds(new GLatLng(53.284661,-2.526299),new GLatLng(53.264206,-2.494722)),
  start:   new GLatLng(53.273064,-2.526697)
}
  
Routes[140] =
{
  refnum:  "DC029",
  name:    "NCN Route 73",
  regions: 1,
  desc:    "<P><IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Route 73 Sign\" src=\"http://www.discovercheshire.co.uk/files/Route-73.jpg\" width=96 align=left border=0>Route 73 takes in the Cheshire route from Congleton to Davenham.</P>",
  extent:  new GLatLngBounds(new GLatLng(53.254147,-2.519968),new GLatLng(53.160446,-2.212603)),
  start:   new GLatLng(53.162767,-2.213171)
}
  
Routes[141] =
{
  refnum:  "DC025",
  name:    "NCN Route 45",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Bronze Mercian Warrior Statue\" src=\"http://www.discovercheshire.co.uk/files/Mercian-Warrior-Statue96.jpg\" width=96 align=left border=0>A part of National Cycle Network Route 45 which takes in Whitchurch to Chester.",
  extent:  new GLatLngBounds(new GLatLng(53.201562,-2.902099),new GLatLng(52.973474,-2.605565)),
  start:   new GLatLng(52.973032,-2.66961)
}
  
Routes[142] =
{
  refnum:  "DC011",
  name:    "Coddington Loop",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"South Cheshire Landscape\" src=\"http://www.discovercheshire.co.uk/files/Wheatfield96.jpg\" width=96 align=left border=0>An off-shoot of the Bishop Bennet Way, this is a 13km (8mile) circular route for horse riders following bridleways and minor roads through the countryside of southwest Cheshire.<BR>",
  extent:  new GLatLngBounds(new GLatLng(53.124152,-2.85919),new GLatLng(53.087445,-2.801742)),
  start:   new GLatLng(53.123135,-2.804565)
}
  
Routes[143] =
{
  refnum:  "MF104",
  name:    "Kirkby Moss",
  regions: 2,
  desc:    "<IMG height=69 alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Kirkby Moss bubble.JPG\" width=91 align=left border=0>Shown on a map of Kirkby in 1769, Acornfield Plantation is one of the few remaining woods of the original Manor of Kirkby.",
  extent:  new GLatLngBounds(new GLatLng(53.479198,-2.851031),new GLatLng(53.469809,-2.836376)),
  start:   new GLatLng(53.475605,-2.850751)
}
  
Routes[144] =
{
  refnum:  "DC022",
  name:    "Middlewood Way",
  regions: 1,
  desc:    "The Way offers a 16km/10mile traffic-free route for walkers, cyclists and horse riders. It follows the line of the former Macclesfield, Bollington and Marple Railway. There are few opportunities for refreshment en route so bring a snack and something to drink.<BR>",
  extent:  new GLatLngBounds(new GLatLng(53.395101,-2.123079),new GLatLng(53.262793,-2.074152)),
  start:   new GLatLng(53.260754,-2.118395)
}
  
Routes[145] =
{
  refnum:  "DC040",
  name:    "Salt Line",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"horse riders\" src=\"http://www.discovercheshire.co.uk/files/salt_line_thumb.jpg\" width=96 align=left border=0>Walkers, cyclists and horse riders can take the traffic free route from Hassall Green to Alsager along the Salt Line, with footpath links to the Trent and Mersey Canal and Rode Heath Rise.",
  extent:  new GLatLngBounds(new GLatLng(53.120453,-2.335248),new GLatLng(53.10623,-2.307028)),
  start:   new GLatLng(53.10623,-2.307072)
}
  
Routes[146] =
{
  refnum:  "DC055",
  name:    "Wirral Way",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"hadlow Road Station on Wirral Way\" src=\"http://www.discovercheshire.co.uk/files/Wirral-Way-Cropped.jpg\" width=96 align=left border=0>The Wirral Way is based on the former Hooton to West Kirby Branch Line Railway and forms part of NCN 56, 70 &amp; 71.",
  extent:  new GLatLngBounds(new GLatLng(53.298278,-3.076991),new GLatLng(53.287733,-2.97539)),
  start:   new GLatLng(53.296671,-2.975648)
}
  
Routes[147] =
{
  refnum:  "DC005",
  name:    "Biddulph Valley Way",
  regions: 1,
  desc:    "A multi-user route along a disused railway line, with flat terrain and several access points for cyclists. The route continues into Staffordshire but the surface quality may vary.",
  extent:  new GLatLngBounds(new GLatLng(53.167063,-2.196038),new GLatLng(53.124689,-2.168659)),
  start:   new GLatLng(53.167247,-2.196759)
}
  
Routes[148] =
{
  refnum:  "DC053",
  name:    "Whitegate Way",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Whitegate Way Path\" src=\"http://www.discovercheshire.co.uk/files/Whitegate-Way-Path-2.jpg\" width=96 align=left border=0>Walk, ride or cycle along the Whitegate Way, an ideal traffic-free link from Winsford to Cuddington, near Delamere Forest Park.",
  extent:  new GLatLngBounds(new GLatLng(53.235618,-2.61876),new GLatLng(53.204097,-2.519996)),
  start:   new GLatLng(53.205679,-2.519078)
}
  
Routes[149] =
{
  refnum:  "DC028",
  name:    "NCN Route 71",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Whitegate Way\" src=\"http://www.discovercheshire.co.uk/files/Whitegate-Station-Thumb.jpg\" width=96 align=left border=0>Route 71 takes you east to west across the county of Cheshire. <BR><BR>",
  extent:  new GLatLngBounds(new GLatLng(53.295651,-3.082508),new GLatLng(53.175513,-2.074874)),
  start:   new GLatLng(53.25464,-2.075753)
}
  
Routes[150] =
{
  refnum:  "DC030",
  name:    "NCN Route 74",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"NCN Route 74 Sign\" src=\"http://www.discovercheshire.co.uk/files/Route-74.jpg\" width=96 align=left border=0>Route 74 takes in the Cheshire route from Wrenbury to Sandbach.",
  extent:  new GLatLngBounds(new GLatLng(53.14316,-2.607945),new GLatLng(53.023805,-2.361371)),
  start:   new GLatLng(53.024573,-2.605832)
}
  
Routes[153] =
{
  refnum:  "DC004",
  name:    "A Walk to the Forest",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Tegg's Nose, the Starting Point of A Walk to the Forest\" src=\"http://www.discovercheshire.co.uk/files/Teggs-Nose-Reservoir-Thumb.jpg\" width=96 align=left border=0>A walk to the Forest is a fairly strenuous walk on good paths. There are several ascents and descents. Wear strong shoes or walking boots and bring a waterproof.",
  extent:  new GLatLngBounds(new GLatLng(53.256149,-2.083218),new GLatLng(53.235355,-2.038981)),
  start:   new GLatLng(53.255581,-2.074362)
}
  
Routes[154] =
{
  refnum:  "DC052",
  name:    "Wheelock Rail Trail and Salt Line",
  regions: 1,
  desc:    "Both the Salt Line and the Wheelock Rail Trail follow the old railway line between Kidsgrove and Elworth.<BR>",
  extent:  new GLatLngBounds(new GLatLng(53.139636,-2.38752),new GLatLng(53.10623,-2.307028)),
  start:   new GLatLng(53.120348,-2.335184)
}
  
Routes[156] =
{
  refnum:  "DC046",
  name:    "Traffic Free Chester",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Chester Eastgate Clock\" src=\"http://www.discovercheshire.co.uk/files/Chester-Clock96.jpg\" width=96 align=left border=0>There are three parts to Traffic Free Chester, The Riverside Path, The Canal Towpath and The Chester Railway Path. All part of the National Cycle Network. <BR>",
  extent:  new GLatLngBounds(new GLatLng(53.286513,-3.057456),new GLatLng(53.182426,-2.843019)),
  start:   new GLatLng(53.221001,-3.057402)
}
  
Routes[157] =
{
  refnum:  "DC039",
  name:    "Rode Heath to Kidsgrove",
  regions: 1,
  desc:    "A 3 mile canal towpath along the Trent and Mersey Canal.<BR>",
  extent:  new GLatLngBounds(new GLatLng(53.110186,-2.289476),new GLatLng(53.090567,-2.253576)),
  start:   new GLatLng(53.110366,-2.289826)
}
  
Routes[158] =
{
  refnum:  "DC056",
  name:    "Wirral Way_riding",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Hadlow Road Station on the Wirral Way\" src=\"http://www.discovercheshire.co.uk/files/Wirral-Way-Cropped.jpg\" width=96 align=left border=0>The Wirral Way is based on the former Hooton to West Kirby Branch Line Railway.<BR>",
  extent:  new GLatLngBounds(new GLatLng(53.298278,-3.076991),new GLatLng(53.287733,-2.97539)),
  start:   new GLatLng(53.296671,-2.975648)
}
  
Routes[159] =
{
  refnum:  "DC006",
  name:    "Biddulph Valley Way_riding",
  regions: 1,
  desc:    "<IMG height=96 alt=\"horse riding\" src=\"http://www.discovercheshire.co.uk/files/horse_ride_thumb.jpg\" width=96 align=left border=0>A multi-user route along a disused railway line, with flat terrain and several access points for horse riders.<BR>",
  extent:  new GLatLngBounds(new GLatLng(53.167063,-2.196038),new GLatLng(53.124689,-2.168659)),
  start:   new GLatLng(53.167247,-2.196759)
}
  
Routes[160] =
{
  refnum:  "DC023",
  name:    "Middlewood Way_riding",
  regions: 1,
  desc:    "<IMG height=96 alt=Horse src=\"http://www.discovercheshire.co.uk/files/DSCF3623-thumb.jpg\" width=96 align=left border=0>The Way offers a 16km/10mile traffic-free route for walkers, cyclists and horse riders. It follows the line of the former Macclesfield, Bollington and Marple Railway.<BR><BR>",
  extent:  new GLatLngBounds(new GLatLng(53.395101,-2.123079),new GLatLng(53.262793,-2.074152)),
  start:   new GLatLng(53.260754,-2.118395)
}
  
Routes[161] =
{
  refnum:  "DC032",
  name:    "NCN Route_5",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"NCN Route 5 Signage\" src=\"http://www.discovercheshire.co.uk/files/route-5-sign96.jpg\" width=96 align=left border=0>A part of Route 5 which takes in the Cheshire route, Kidsgrove to Chester.<BR>",
  extent:  new GLatLngBounds(new GLatLng(53.30756,-2.960657),new GLatLng(53.086513,-2.242506)),
  start:   new GLatLng(53.08598,-2.242258)
}
  
Routes[162] =
{
  refnum:  "DC054",
  name:    "Whitegate_Way_and_Weaver_Parkway",
  regions: 1,
  desc:    "<IMG style=\"MARGIN-BOTTOM: 4px; MARGIN-RIGHT: 8px\" height=96 alt=\"Whitegate Station Sign\" src=\"http://www.discovercheshire.co.uk/files/Whitegate-Station-Thumb.jpg\" width=96 align=left border=0>Cycle along the Whitegate Way and Weaver Parkway, ideal traffic-free routes between Winsford and Cuddington, near Delamere Forest Park. <BR>",
  extent:  new GLatLngBounds(new GLatLng(53.259693,-2.619107),new GLatLng(53.187767,-2.50383)),
  start:   new GLatLng(53.190468,-2.509568)
}
  
Routes[164] =
{
  refnum:  "MF087",
  name:    "Runcorn Cycleway",
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Runcorn Cycleway bubble.JPG\" align=left border=0>Runcorn's excellent network of cycleways provides glimpses of almost all its parks and woodlands and forms a satisfying circuit.",
  extent:  new GLatLngBounds(new GLatLng(53.343554,-2.738455),new GLatLng(53.311473,-2.655402)),
  start:   new GLatLng(53.339562,-2.738241)
}
  
Routes[165] =
{
  refnum:  "DC024",
  name:    "Millennium Route",
  regions: 1,
  desc:    "TEST<BR>",
  extent:  new GLatLngBounds(new GLatLng(53.317383,-3.077893),new GLatLng(53.231663,-2.878736)),
  start:   new GLatLng(53.233301,-2.878961)
}
  
Routes[166] =
{
  refnum:  "MF107",
  name:    "Formby Red Squirrel Walk",
  regions: 2,
  desc:    "<IMG height=77 alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Formby Red Squirrel Walk bubble.JPG\" width=103 align=left border=0>See the indigenous but endangered red squirrel at the National Trust's attractive coastal reserve.",
  extent:  new GLatLngBounds(new GLatLng(53.565198,-3.088945),new GLatLng(53.563826,-3.084908)),
  start:   new GLatLng(53.565215,-3.087077)
}
  
Routes[167] =
{
  refnum:  "MF098",
  name:    "Blundellsands to Maghull",
  regions: 2,
  desc:    "<IMG height=69 alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Blundellsands%20to%20Maghull%20bubble.JPG\" width=90 align=left border=0>This long(ish) walk of 14½km (9 miles) takes us right across the borough of Sefton from west to east, from coast to countryside.<BR></NOSCRIPT>\n<SCRIPT language=javascript id=dstb-id>if(typeof(dstb)!= \"undefined\"){ dstb();}</SCRIPT>\n</NOSCRIPT>\n<SCRIPT language=javascript id=dstb-id>if(typeof(dstb)!= \"undefined\"){ dstb();}</SCRIPT>\n</NOSCRIPT>\n<SCRIPT language=javascript id=dstb-id>if(typeof(dstb)!= \"undefined\"){ dstb();}</SCRIPT>",
  extent:  new GLatLngBounds(new GLatLng(53.534974,-3.057803),new GLatLng(53.497438,-2.929586)),
  start:   new GLatLng(53.496442,-3.056844)
}
  
Routes[168] =
{
  refnum:  "MF005",
  name:    "Carey Park & Witton Mill",
  regions: 2,
  desc:    "<IMG height=111 alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Carey Park bubble.JPG\" width=84 align=left border=0>Explore Northwich Community Woodlands from the town centre! A circular walk encompassing a variety of different wildlife habitats including open grassland, woodland areas and meadows.",
  extent:  new GLatLngBounds(new GLatLng(53.274337,-2.516276),new GLatLng(53.264713,-2.50473)),
  start:   new GLatLng(53.264849,-2.508798)
}
  
Routes[171] =
{
  refnum:  "MF113",
  name:    "The Whitegate Way",
  regions: 2,
  desc:    "<IMG height=96 alt=\"\" src=\"http://www.discovercheshire.co.uk/files/Whitegate-Station-Thumb.jpg\" width=96 align=left border=0>The Whitegate Way is a permitted bridleway along an old railway line, passing through Vale Royal, and some of Cheshire’s most attractive countryside.",
  extent:  new GLatLngBounds(new GLatLng(53.234221,-2.627398),new GLatLng(53.196678,-2.519927)),
  start:   new GLatLng(53.196668,-2.522071)
}
  
Routes[173] =
{
  refnum:  "MF000",
  name:    "Thornton-le-Moors to Frodsham Greenway (via Helsby)",
  regions: 2,
  desc:    "<IMG height=69 alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/TleM to F G 3 bubble.JPG\" width=120 align=left border=0>A more road-heavy route that cyclists will enjoy across this flat, peaceful stretch of countryside.",
  extent:  new GLatLngBounds(new GLatLng(53.294942,-2.839292),new GLatLng(53.249312,-2.72188)),
  start:   new GLatLng(53.295497,-2.722658)
}
  
Routes[174] =
{
  refnum:  "MF024",
  name:    "Liverpool Cycle Trail",
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Liverpool Cycle Trail bubble.JPG\" align=left border=0>See the sights of the Capital of Culture from the saddle.",
  extent:  new GLatLngBounds(new GLatLng(53.49225,-3.008249),new GLatLng(53.359301,-2.852036)),
  start:   new GLatLng(53.442433,-2.891097)
}
  
Routes[179] =
{
  refnum:  "MF127",
  name:    "Old Pale Cycle Track",
  regions: 2,
  desc:    "<IMG height=109 alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Old Pale bubble.JPG\" width=98 align=left border=0>Take in the stunning view from the top of this steep new woodland site.<BR><BR>Nearby: <A href=\"Route.aspx?region=2&amp;cat=Cycling&amp;refnum=MF125\">Whitefield Cycle Trail</A>",
  extent:  new GLatLngBounds(new GLatLng(53.228868,-2.686822),new GLatLng(53.2201,-2.668658)),
  start:   new GLatLng(53.228468,-2.677151)
}
  
Routes[180] =
{
  refnum:  "MF125",
  name:    "Whitefield Cycle Trail",
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Whitefield bubble.JPG\" align=left border=0>Delamere Forest Park is ideal for cycling. Smooth sandy tracks amongst mature Scots pine create the perfect setting.",
  extent:  new GLatLngBounds(new GLatLng(53.246586,-2.70305),new GLatLng(53.228908,-2.669207)),
  start:   new GLatLng(53.228932,-2.674206)
}
  
Routes[181] =
{
  refnum:  "MF130",
  name:    "Aston Grange Loop",
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Aston bubble.JPG\" align=left border=0>An attractive circuit consisting almost entirely of off-road riding.",
  extent:  new GLatLngBounds(new GLatLng(53.299044,-2.652527),new GLatLng(53.281742,-2.624011)),
  start:   new GLatLng(53.296775,-2.652492)
}
  
Routes[182] =
{
  refnum:  "MF126",
  name:    "Old Pale Horse Track",
  regions: 2,
  desc:    "<IMG alt=\"\" src=\"http://www.discovercheshire.co.uk/files/MerseyForest/Images/Old Pale 2 bubble.JPG\" align=left border=0>Take in the stunning view from the top of this steep new woodland site.",
  extent:  new GLatLngBounds(new GLatLng(53.228868,-2.686822),new GLatLng(53.2201,-2.668658)),
  start:   new GLatLng(53.228931,-2.6757)
}



var RouteGroups = [];
  
RouteGroups[27] =
{
  id:     27,
  region: 1,
  name:   "Gritstone Trail",
  desc:   "Stride out along the Gritstone Trail and sample some of the finest\nwalking in Cheshire. ",
  items:  [],
  route:  {}
}
  
RouteGroups[29] =
{
  id:     29,
  region: 1,
  name:   "Sandstone Trail",
  desc:   "Stride out along the Sandstone Trail and sample some of the finest walking in Cheshire.",
  items:  [],
  route:  {}
}



var RGI = [];
RGI[22] = "27";
RGI[64] = "27";
RGI[65] = "27";
RGI[49] = "29";
RGI[62] = "29";
RGI[63] = "29";


for (var routeId in RGI)
{
  var routeGroupId = RGI[routeId];
  RouteGroups[routeGroupId].items.push(routeId);
}
for (var id in RouteGroups)
{
    var routeGroup = RouteGroups[id];
    var midRoutePos = Math.round(routeGroup.items.length / 2);
    var midRoute = Routes[routeGroup.items[midRoutePos - 1]];
    var firstRoute = Routes[routeGroup.items[0]];
    var extent = new GLatLngBounds();
    for (var i=0; i<routeGroup.items.length; i++)
    {
      var routeId = routeGroup.items[i];
      var route = Routes[routeId];
      extent.extend(route.extent.getSouthWest());
      extent.extend(route.extent.getNorthEast());
    }
    routeGroup.route = {
        id:      firstRoute.id,
        name:    routeGroup.name,
        regions: routeGroup.region,
        desc:    routeGroup.desc,
        extent:  extent,
        start:   midRoute.start,
        group:   routeGroup
    }
}

var RC = [];

RC[1] = "Walking";
RC[2] = "Cycling";
RC[3] = "Riding";


var RT = [];

RT[1] = "Easy";
RT[2] = "Medium";
RT[3] = "Hard";
RT[4] = "Long Distance";


function RCT(routeId,routeCatId,routeTypeId)
{
  this.routeId = routeId;
  this.routeCatId = routeCatId;
  this.routeTypeId = routeTypeId;
}
var RouteCategoryTypes = [

new RCT(1,1,1)
,new RCT(2,1,1)
,new RCT(3,1,1)
,new RCT(4,1,4)
,new RCT(5,2,2)
,new RCT(6,3,4)
,new RCT(12,2,2)
,new RCT(13,2,2)
,new RCT(14,1,2)
,new RCT(20,2,2)
,new RCT(21,2,3)
,new RCT(22,1,4)
,new RCT(24,2,2)
,new RCT(27,1,1)
,new RCT(31,1,2)
,new RCT(43,1,1)
,new RCT(44,1,2)
,new RCT(45,2,3)
,new RCT(46,1,1)
,new RCT(48,2,2)
,new RCT(49,1,4)
,new RCT(50,1,3)
,new RCT(51,2,2)
,new RCT(53,2,2)
,new RCT(57,1,2)
,new RCT(59,2,2)
,new RCT(61,2,2)
,new RCT(62,1,4)
,new RCT(63,1,4)
,new RCT(64,1,4)
,new RCT(65,1,4)
,new RCT(66,1,4)
,new RCT(67,1,4)
,new RCT(98,1,4)
,new RCT(99,1,4)
,new RCT(99,2,4)
,new RCT(101,3,2)
,new RCT(103,1,1)
,new RCT(103,2,1)
,new RCT(108,2,4)
,new RCT(109,2,4)
,new RCT(111,2,4)
,new RCT(113,1,1)
,new RCT(114,1,2)
,new RCT(116,1,2)
,new RCT(117,1,2)
,new RCT(118,1,2)
,new RCT(119,1,2)
,new RCT(120,1,1)
,new RCT(121,1,2)
,new RCT(122,1,1)
,new RCT(123,1,1)
,new RCT(124,1,2)
,new RCT(125,1,2)
,new RCT(126,1,3)
,new RCT(126,2,1)
,new RCT(126,3,1)
,new RCT(127,1,1)
,new RCT(128,1,2)
,new RCT(130,1,2)
,new RCT(131,1,4)
,new RCT(132,2,1)
,new RCT(133,2,2)
,new RCT(134,2,2)
,new RCT(135,2,2)
,new RCT(136,1,3)
,new RCT(136,2,4)
,new RCT(136,3,2)
,new RCT(140,2,4)
,new RCT(141,2,4)
,new RCT(142,3,2)
,new RCT(143,1,1)
,new RCT(144,2,1)
,new RCT(145,3,1)
,new RCT(146,2,1)
,new RCT(147,2,1)
,new RCT(148,3,1)
,new RCT(149,2,4)
,new RCT(150,2,4)
,new RCT(153,1,3)
,new RCT(154,2,1)
,new RCT(156,2,1)
,new RCT(157,2,1)
,new RCT(158,3,1)
,new RCT(159,3,1)
,new RCT(160,3,1)
,new RCT(161,2,4)
,new RCT(162,2,1)
,new RCT(164,2,2)
,new RCT(166,1,1)
,new RCT(167,1,3)
,new RCT(168,1,1)
,new RCT(171,2,1)
,new RCT(171,3,2)
,new RCT(173,2,4)
,new RCT(174,2,2)
,new RCT(179,2,3)
,new RCT(180,2,3)
,new RCT(181,3,1)
,new RCT(182,3,1)


];

var OutandaboutCategories = [];
var GardenCategories = [];
var RouteCategories = [];
var REGIONS = [1,2,3];

for (var i in Outandabouts)
{
  var outandabout = Outandabouts[i];
  var category = OC[outandabout.catId];
  if (!OutandaboutCategories[category]) OutandaboutCategories[category] = [];
  for (var j=0; j<REGIONS.length; j++)
  {
    var regId = REGIONS[j];
    if ((regId & outandabout.regions) == regId)
    {
        if (!OutandaboutCategories[category][regId])
            OutandaboutCategories[category][regId] = [];
        OutandaboutCategories[category][regId].push(outandabout);
    }
  }
}

for (var i in Gardens)
{
  var garden = Gardens[i];
  var category = GC[garden.catId];
  if (!GardenCategories[category]) GardenCategories[category] = [];
  for (var j=0; j<REGIONS.length; j++)
  {
    var regId = REGIONS[j];
    //if ((regId & garden.regions) == regId)
    //{
        if (!GardenCategories[category][regId])
            GardenCategories[category][regId] = [];
        GardenCategories[category][regId].push(garden);
    //}
  }
}

for (var i=0; i<RouteCategoryTypes.length; i++)
{
  var routeCatType = RouteCategoryTypes[i];
  var route     = Routes[routeCatType.routeId];
  var routeCat  = RC[routeCatType.routeCatId];
  var routeType = RT[routeCatType.routeTypeId];
  var routeGroupId = RGI[routeCatType.routeId];
  var routeGroup = routeGroupId ? RouteGroups[routeGroupId] : null;
  
  if (route == null)
  {
    //Only occurs when a record is in Route and Route_Category_Type but not SDE
    continue;
  }
  
  if (!RouteCategories[routeCat]) RouteCategories[routeCat] = [];
  if (!RouteCategories[routeCat][routeType]) RouteCategories[routeCat][routeType] = [];

  for (var j=0; j<REGIONS.length; j++)
  {
    var regId = REGIONS[j];
    if (routeGroup)
    { 
      if (routeGroup.region == regId)
      {
        if (routeGroup.route.id != route.id) continue;
        var route = routeGroup.route;
      }
    }
    if ((regId & route.regions) == regId)
    {
        if (!RouteCategories[routeCat][routeType][regId])
            RouteCategories[routeCat][routeType][regId] = [];
        RouteCategories[routeCat][routeType][regId].push(route);
    }
  }
}

var FC = [];
var FeatureCategories = FC;
FC["Visit"] = [];
FC["Enjoy"] = [];
FC["Stay"] = [];

FC["Visit"].push("Country and Crafts");
FC["Visit"].push("Culture and Heritage");
FC["Visit"].push("Family Fun");
FC["Visit"].push("Gardens");
FC["Enjoy"].push("Activities");
FC["Enjoy"].push("Eat and Drink");
FC["Enjoy"].push("Entertainment");
FC["Enjoy"].push("Shops and Facilities");
FC["Stay"].push("Bed and Breakfast");
FC["Stay"].push("Hotels");
FC["Stay"].push("Self Catering");
FC["Stay"].push("Other");


