﻿	google.load("maps", "2.x");

// Call this function when the page has been loaded
function gMapInitialize() 
{
	try
	{
		var map = new google.maps.Map2(document.getElementById("map"));
		map.setCenter(new google.maps.LatLng(52.211425, 5.182263), 14);
		map.setZoom(14);
		map.enableScrollWheelZoom();
		map.enableDragging();
		map.addControl(new google.maps.LargeMapControl());
		openInfo(map);
		google.maps.Event.addListener(map, "click", function() { map.closeInfoWindow(); openInfo(map); });
	}
	catch (exception)
	{
	}
}
google.setOnLoadCallback(gMapInitialize);

function openInfo(map)
{
  map.openInfoWindowHtml(new google.maps.LatLng(52.211425, 5.182263),  "<div style=\"color:#00345B; font-family:Verdana,Arial,Helvetica,sans-serif; font-size:11px; line-height:150%;\"</style><img src=\"http://www.hanzevastcapital.nl/images/img_logo.png\" alt=\"Hanzevast capital\" /><br />Utrechtseweg 47<br />1213 TL Hilversum</div>", null);
}