function wagt_map_1() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagt_map_1')) return false;
    var map = new GMap2(document.getElementById('wagt_map_1'));
    map.enableContinuousZoom();
    map.enableDoubleClickZoom();
    map.addControl(new GSmallZoomControl());
    var geocoder = new GClientGeocoder();
    
    var icon = new GIcon();
    var markerStyle = 'Flag';
    var markerColor = 'Pacifica';
    icon.image = 'http://google.webassist.com/google/markers/flag/pacifica.png';
    icon.shadow = 'http://google.webassist.com/google/markers/flag/shadow.png';
    icon.iconSize = new GSize(31,35);
    icon.shadowSize = new GSize(31,35);
    icon.iconAnchor = new GPoint(4,27);
    icon.infoWindowAnchor = new GPoint(7,2);
    icon.printImage = 'http://google.webassist.com/google/markers/flag/pacifica.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/flag/pacifica_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/flag/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/flag/pacifica_transparent.png';

    var address_0 = {
      street: '2535 Hale Street, Suite A',
      city: 'Avon',
      state: 'Ohio',
      zip: '44011',
      country: '',
      infowindow: 'default',
      infowindowtext: '<p><strong>Avon - Hale Street</strong> <a href="http://www.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=2535+Hale+Street,+Avon,+OH&sll=41.419109,-82.061434&sspn=0.048852,0.111494&ie=UTF8&z=16&iwloc=A"><img src="/images/map__arrow.png" width="16" height="16" alt="Driving Directions" title="Get Driving Directions or See A Larger Map" /></a><br />2535 Hale Street<br />Avon, Ohio 44011</p>',
      full: '2535 Hale Street, Suite A, Avon, Ohio, 44011',
      isdefault: true
    };
    
    geocoder.getLatLng (
      address_0.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_0.infowindowtext);
          });
          map.addOverlay(marker);
          marker.openInfoWindowHtml(address_0.infowindowtext);
        }
        else {
          map.setCenter(new GLatLng(41.419109,-82.061434), 13);
        }
      }
    );

  }
}