function wagt_map_47() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagt_map_47')) return false;
    var map = new GMap2(document.getElementById('wagt_map_47'));
    map.enableContinuousZoom();
    map.enableDoubleClickZoom();
    map.addControl(new GSmallMapControl());
    map.addControl(new GMapTypeControl());
    var geocoder = new GClientGeocoder();
    
    var icon = new GIcon();
    var markerStyle = 'Star';
    var markerColor = 'Desert Spice';
    icon.image = 'http://google.webassist.com/google/markers/star/desertspice.png';
    icon.shadow = 'http://google.webassist.com/google/markers/star/shadow.png';
    icon.iconSize = new GSize(29,39);
    icon.shadowSize = new GSize(29,39);
    icon.iconAnchor = new GPoint(15,15);
    icon.infoWindowAnchor = new GPoint(19,7);
    icon.printImage = 'http://google.webassist.com/google/markers/star/desertspice.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/star/desertspice_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/star/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/star/desertspice_transparent.png';

    var address_0 = {
      street: '620 Industry Rd.',
      city: 'Louisville',
      state: 'KY',
      zip: '40208',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Shelter Distribution<br /> Louisville </strong><br />620 Industry Rd.<br />Louisville, KY, 40208<br /><br /><a href="Louisville.html"><strong>Visit This Location</strong></a></span>',
      full: '620 Industry Rd., Louisville, KY, 40208',
      isdefault: false
    };
    
    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);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_1 = {
      street: '1325 Baker Court',
      city: 'Lexington',
      state: 'KY',
      zip: '40511',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Shelter Distribution<br /> Lexington </strong><br />1301 Baker Court<br />Lexington, KY, 40511<br /><a href="Lexington.html"><strong>Visit This Location</strong></a></span>',
      full: '1301 Baker Court, Lexington, KY, 40511',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_1.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_1.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_2 = {
      street: '1100 Ulrich Ave.',
      city: 'Louisville',
      state: 'KY',
      zip: '40219',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Shelter Distribution<br /> Louisville </strong><br />1100 Ulrich Ave.<br />Louisville, KY, 40219<br /><a href="Louisville2.html"><strong>Visit This Location</strong></a></span>',
      full: '1100 Ulrich Ave., Louisville, KY, 40219',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_2.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_2.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_3 = {
      street: '1036 Logan Station Rd',
      city: 'Shelbyville',
      state: 'KY',
      zip: '40065',
      country: '',
      infowindow: 'default',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Address:</strong><br />1036 Logan Station Rd<br />Shelbyville, KY 40065</span>',
      full: '1036 Logan Station Rd, Shelbyville, KY, 40065',
      isdefault: true
    };
    
    geocoder.getLatLng (
      address_3.full,
      function(point) {
        if(point) {
          map.setCenter(point, 8);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 5);
        }
      }
    );

  }
}
