'
});
// open the info window when the map is done loading
google.maps.event.addListener(map, 'tilesloaded', function() {
info.open(map, marker);
});
// open the info window when the marker is clicked
google.maps.event.addListener(marker, 'click', function() {
info.open(map, marker);
});
} // end function initializeMap
// initialize the map
google.maps.event.addDomListener(window, 'load', initializeMap);