


var map;
var locationLatLng=new GLatLng(39.949095,-75.145111);

function loadGMap()
{
	if(GBrowserIsCompatible())
	{
	    map=new GMap2(document.getElementById("map"));
	    map.setCenter(locationLatLng,10);
	}
	map.addControl(new GSmallMapControl());
	var marker=new GMarker(locationLatLng);
	GEvent.addListener(marker,'click',markerClick);
	map.addOverlay(marker);
	markerClick();
}

function markerClick()
{
    html="<h3>Next Meeting</h3><p>Thursday, September 9, 2010 19:00 at Indy Hall, Philadelphia, PA</p>";
    map.openInfoWindowHtml(locationLatLng,html);
}
