
    //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {  
	  
	  
	  var baseIcon = new GIcon();
          baseIcon.iconSize=new GSize(32,32);
          baseIcon.shadowSize=new GSize(56,32);
          baseIcon.iconAnchor=new GPoint(16,32);
          baseIcon.infoWindowAnchor=new GPoint(16,0);
          
      var coffee = new GIcon(baseIcon, "http://maps.google.com/mapfiles/kml/pal2/icon62.png", null, "http://maps.google.com/mapfiles/kml/pal2/icon62s.png");
    
	 function createMarker(point,html,icon) {
        var marker = new GMarker(point,icon);
        GEvent.addListener(marker, "mouseover", function() {
          marker.openInfoWindowHtml(html);
        });
        return marker;
      }
	  
	  var map = new GMap2(document.getElementById("map"));
      map.addControl(new GLargeMapControl());
      map.addControl(new GMapTypeControl());
      map.setCenter(new GLatLng(43.55, -80.21), 13);
    
window.setTimeout(function() {
  map.panTo(new GLatLng(43.681242, -80.429443));
}, 3000);
       map.setZoom(map.getZoom()-2);
    
      var point = new GLatLng(43.681242, -80.429443);
	  var marker = createMarker(point,'<div style="color:#312525;text-align:center;">The River<br> <span style="font-size:12px;">63 Metcalfe St. Box 16, Elora Ont.<br> 519.846.0072</span></div>', coffee)
      map.addOverlay(marker);
	  }
	  else {
      alert("Sorry, the Google Maps API is not compatible with this browser");
    }
	  }