function googleMapInit() {
	var map = new google.maps.Map2(document.getElementById("google-map"));
	map.setCenter(new google.maps.LatLng(51.51640767141776, -0.13311266899108887), 16);

	map.addControl(new GLargeMapControl3D());


	var point = new GPoint(-0.13311266899108887, 51.51640767141776);

	html = "<div id=\"info-marker\"><h3>CST Advertising</h3><br /><b>Address:</b><br />5th Floor<br />Holden House<br />57 Rathbone Place<br />London W1T 1JU<br /><a href=\"http://maps.google.co.uk/maps?f=q&source=s_q&hl=en&geocode=&q=57+Rathbone+Place,+London,+W1T+1JU&sll=51.516528,-0.133338&sspn=0.011577,0.026178&ie=UTF8&z=16&iwloc=addr\" target=\"_blank\">Get directions</a></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;
}
