function makemap() {
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("map"));
		var point = new GLatLng(30.429804, -91.082067);
		map.setCenter(new GLatLng(30.429804, -91.082067), 15);
		map.addControl(new GSmallMapControl());
		map.addOverlay(createMarker(point, "<strong>The Junior League of Baton Rouge</strong><br />9523 Fenway Avenue<br />Baton Rouge, LA 70809"));
	}
}

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

