// Draw Googlemap
function initialize() {
	if (GBrowserIsCompatible())
	{
		var map = new GMap2(document.getElementById("map_canvas"));			// Locate Googlemap in div id
		var lat = 52.441774225978165;
		var lng = -2.0001983642578125;

		map.setCenter(new GLatLng(lat, lng), 14);							// set centre point and zoom
		map.addControl(new GSmallMapControl());								// add movement & zoom controls
		var marker = new GMarker(new GLatLng(lat, lng));					// create a marker at the centre point
	
		GEvent.addListener(marker,"click", function()
			{
				var info="<strong>Ishida Europe Ltd. Head Office</strong><br/>" +	// add info bubble to marker
					 "11 Kettles Wood Drive,<br/>" +
					 "Woodgate Business Park,<br/>" +
					 "Birmingham,<br/>" +
					 "B32 3DB";
				marker.openInfoWindowHtml(info);
			  });
		map.addOverlay(marker);												// add marker to the overlays
	  }
	}
