    // map.js
    //<![CDATA[
    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
	// get ready to disable this line
	// before set center
	map.addControl(new GSmallMapControl());
	map.addControl(new GMapTypeControl());

	// Geocoding
	geocoder = new GClientGeocoder();
	if (geocoder) {
		geocoder.getLatLng(
		  // adjust address to suit
		  '2527 S 8th Ave Greeley CO 80631',
	          function(point) {
		    if (!point) {
	              alert(address + " not found");
		    } else {
	          map.setCenter(point, 14);
			 map.panDirection(0,1);
			 //map.panBy(10);
		      var marker = new GMarker(point);
	              map.addOverlay(marker);
		      // adjust html to suit, being careful to escape single quotes.

					  marker.openInfoWindowHtml('<table><tr><td><div align=left style="font-family:arial,sans-serif;font-size:13px;"><span style="font-size:16px;font-weight:bold;"><a target=_new href=http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=2527+S+8th+Ave+Greeley+CO+80631&sll=37.0625,-95.677068&sspn=33.02306,56.601563&ie=UTF8&ll=41.467798,-81.920028&spn=0.007621,0.013819&z=16&iwloc=addr>Advanced Auto Pros</a></span> <span style="font-size:7px"><br><br></span>2527 S. 8th Ave.<br />Greeley, CO 80631<br>(970) 378-9171<br><br><a target=_new href=http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=2527+S+8th+Ave+Greeley+CO+80631&sll=37.0625,-95.677068&sspn=33.02306,56.601563&ie=UTF8&ll=41.467798,-81.920028&spn=0.007621,0.013819&z=16&iwloc=addr>Directions</a><br></div><br></td><td valign=top></td></tr></table>' );
		    }
		}
		);
	}
      }
    }

