	//<![CDATA[


    // Create our "tiny" marker icon
    var icon = new GIcon();
    icon.image = "http://labs.google.com/ridefinder/images/mm_20_red.png";
    icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
    icon.iconSize = new GSize(12, 20);
    icon.shadowSize = new GSize(22, 20);
    icon.iconAnchor = new GPoint(6, 20);
    icon.infoWindowAnchor = new GPoint(5, 1);

    // Center the map on Evangelical Presbyterian Church

	var map = new GMap(document.getElementById("map"));
	map.addControl(new GSmallMapControl());
	map.addControl(new GMapTypeControl());
	map.centerAndZoom(new GPoint(-74.900150, 39.954885), 2);


    // Creates a tiny marker at the given point
	function createMyMarker(in_point, in_htmlText) {
		var marker = new GMarker(in_point, icon);
		map.addOverlay(marker);
		GEvent.addListener(marker, "click", function() {
			marker.openInfoWindowHtml(in_htmlText);
		});
	}

    // Place the icon in the map viewport
	createMyMarker(new GPoint(-74.9005, 39.9548), "<div style='font-size: 0.90em;font-weight: bold;text-align: left'>Evangelical Presbyterian Church</div><div style='font-size: 0.75em;text-align: left;'>550 Union Mill Road</div><div style='font-size: 0.75em;text-align: left;'>Mt. Laurel NJ</div><div style='font-size: 0.75em;text-align: left;'>856-778-5472</div>");


	//]]>
