function initialize() {
	// (51.514217742280586, -0.14569759368896484)
	if (GBrowserIsCompatible()) {
		var clickMessage = "<div class=\"mapinfo\"><h3>Vena Ramphal</h3><p>73 New Bond Street<br />Mayfair<br />London W1S 1RS</p><p><a href=\"googledirections.php\" target=\"_blank\">Click here for directions</a><p></div>";
		var map = new GMap2(document.getElementById("googlemap"));
		map.setCenter(new GLatLng(51.5142, -0.1456), 15);
		map.setMapType(G_NORMAL_MAP);
		var meditateIcon = new GIcon();
		meditateIcon.image = "images/marker.png";
		meditateIcon.iconSize = new GSize(96, 58);
		meditateIcon.shadow = "images/marker-shadow.png";
		meditateIcon.shadowSize = new GSize(96, 58);
		meditateIcon.iconAnchor = new GPoint(0, 58);
		meditateIcon.infoWindowAnchor = new GPoint(60, 0);
		meditateIcon.printImage = "images/marker.gif";
		meditateIcon.printShadow = "images/marker-shadow.gif";
		var markerOptions = { icon:meditateIcon };
		var marker = new GMarker(map.getCenter(), markerOptions);
		GEvent.addListener(marker, "click", function () {
		marker.openInfoWindowHtml(clickMessage);});
		map.addOverlay(marker);
		var mapControl = new GSmallMapControl();
		map.addControl(mapControl);
		map.addControl(new GSmallMapControl());
	}
}