function makemap() {
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("map"));
		var point = new GLatLng(36.109201, -86.813682);
		map.setCenter(new GLatLng(36.109201, -86.813682), 15);
		map.addControl(new GSmallMapControl());
		map.addOverlay(createMarker(point, "<strong>The Junior League of Nashville</strong><br />2202 Crestmoor Road<br />Nashville, TN 37215"));
	}
}

function createMarker(point, message) {
  var marker = new GMarker(point);
  GEvent.addListener(marker, "click", function() {
    marker.openInfoWindowHtml(message);
  });
  return marker;
}




