


var map;
var locationLatLng=new GLatLng(43.026726,-76.038828);

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, July 8, 2010 19:00 at The White House 7030 E. Genesee Street Fayetteville, New York 13066</p>";
    map.openInfoWindowHtml(locationLatLng,html);
}
