function makemap() {
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("map"));
		var point = new GLatLng(40.719091, -74.359249);
		map.setCenter(new GLatLng(40.72041, -74.359249), 15); // Center latitude is point + 0.001319
		map.addControl(new GSmallMapControl());
		map.addOverlay(createMarker(point, "<strong>Junior League of Summit, Inc.</strong><br />37 DeForest Avenue<br />Summit, New Jersey 07901"));
	}
}

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




