function googleMapInit() {
	var map = new google.maps.Map2(document.getElementById("google-map"));
	map.setCenter(new google.maps.LatLng(51.5200, -0.13465), 17);

	map.addControl(new GLargeMapControl3D());


	var point = new GPoint(-0.13465, 51.5200);

	html = "<div id=\"info-marker\"><h3>Tinderfields</h3><p>30-32 Whitfield Street<br />London<br />W1T 2HR<br /><a href=\"http://maps.google.co.uk/maps?f=q&source=s_q&hl=en&geocode=&q=30-32+Whitfield+St,+London,+W1T+2HR&sll=51.528799,-0.11811&sspn=0.008303,0.022724&ie=UTF8&z=16&iwloc=A\" target=\"_blank\">Get directions</a></p></div>";
	var marker = createInfoMarker(point, html);
	map.addOverlay(marker);
	//marker.openInfoWindowHtml(html);
}

function createInfoMarker(point, html) {
	var venuesIcon = new GIcon();
	venuesIcon.image = "/images/googlemapicon.png";
	venuesIcon.iconSize = new GSize(39, 32);
	venuesIcon.iconAnchor = new GPoint(5, 10);
	venuesIcon.infoWindowAnchor = new GPoint(12, 2);

	var icons = [];
	icons[0] = venuesIcon;
	
	//var marker = new GMarker(point, icons[0]);
	var marker = new GMarker(point);

	GEvent.addListener(marker, "click",	function() {
		marker.openInfoWindowHtml(html);
	});

	return marker;
}
