//<![CDATA[
	//adding window to each location
	var ortonhallwindow = '<table width="250" border="0" cellpadding="3" cellspacing="0" class="body_table"><tr><td width="100"><img src="http://www.ortonhall.com/images/ortonhall_panoramic_view_120.jpg" alt="Orton Hall" width="120" height="53" class="image_border"></td><td width="138"><p class="bodytext_large_bold">Orton Hall </p></td></tr></table>';

      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
		map.addControl(new GSmallMapControl());
		//centre of map location
        map.setCenter(new GLatLng(54.464264, -2.579652), 13, G_HYBRID_MAP);
		
		//ortonhall location marker
      var ortonhall = new GMarker(new GLatLng(54.464264, -2.579652));
      map.addOverlay(ortonhall);
		
		//adding click function to page for information windows
	  GEvent.addListener(ortonhall, "click", function() {
        ortonhall.openInfoWindowHtml(ortonhallwindow);
      });
      }
    //]]>