


var map;
var locationLatLng=new GLatLng(40.556555,-80.021448);

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, January 19, 2012 19:30 at Smith Micro</p>";
    map.openInfoWindowHtml(locationLatLng,html);
}

