


var map;
var locationLatLng=new GLatLng(53.544442,9.948632);

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, March 1, 2012 19:00 at CocoaHeads Meeting @ Cellular GmbH, Große Elbstraße 39, 22767 Hamburg</p>";
    map.openInfoWindowHtml(locationLatLng,html);
}

