// google map __________________________________________________


	function load() {

      if (GBrowserIsCompatible()) {
      var map = new GMap2(document.getElementById("routeMap"));
	  map.addControl(new GSmallMapControl());
	  map.addControl(new GMapTypeControl(true));
      map.setCenter(new GLatLng(35.693500,139.698436), 16);
	  map.disableDoubleClickZoom();
	  
	  var points = [];
      points[0] = new GLatLng(35.694676,139.696253);
      points[1] = new GLatLng(35.694655,139.696312);
      points[2] = new GLatLng(35.694537,139.696237);
      points[3] = new GLatLng(35.694045,139.69724);
      points[4] = new GLatLng(35.693975,139.697192);
      points[5] = new GLatLng(35.693713,139.697642);
      points[6] = new GLatLng(35.693788,139.698957);
      points[7] = new GLatLng(35.692258,139.699203);
      points[8] = new GLatLng(35.692254,139.699472);
      points[9] = new GLatLng(35.692014,139.69952);
      points[10] = new GLatLng(35.691391,139.699327);
      var polyline = new GPolyline(points);

      map.addOverlay(polyline);
	  
      function createMarker(point,html) {
        var marker = new GMarker(point);
        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(html);
        });
        return marker;
      }
	  
      var point0 = new GLatLng(35.694676,139.696253);
      var marker0 = createMarker(point0, 'スナックニッポニア');
      map.addOverlay(marker0);
      var point1 = new GLatLng(35.694655,139.696312);
      var point2 = new GLatLng(35.644637,140.046050);
      var point3 = new GLatLng(35.694537,139.696237);
      var point4 = new GLatLng(35.694045,139.69724);
      var point5 = new GLatLng(35.693713,139.697642);
      var point6 = new GLatLng(35.693788,139.698957);
      var point7 = new GLatLng(35.692258,139.699203);
      var point8 = new GLatLng(35.692254,139.699472);
      var point9 = new GLatLng(35.692014,139.69952);
      var point10 = new GLatLng(35.691391,139.699327);
      }
	 


    }
