/************************************************************************
	
	JavaScript Document // Google Map - ICO
	Cavendish Conference Venues
	
************************************************************************/


    function initialize() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("location-map"));
        map.setCenter(new GLatLng(51.51795, -0.13711), 13); // Map centre and zoom level
		map.setUIToDefault(); // show default map controls
			
		// Map overview controls
     	var ovcontrol = new GOverviewMapControl(new GSize(120,120)); 
    	map.addControl(ovcontrol);


		// ICO Icon
		var ICOIcon = new GIcon();
		ICOIcon.image = "/images/common/London-Conference-Venues-ICO-Tab.png";
		ICOIcon.iconSize = new GSize(62, 74);
		ICOIcon.iconAnchor = new GPoint(7, 67);
		ICOIcon.infoWindowAnchor = new GPoint(7, 67);

		// Create the marker and add the click event
		markerOptions = { icon:ICOIcon };
		
		// Bring out location and write Icon
        var latlng = new GLatLng(51.51795, -0.13711);
        map.addOverlay(new GMarker(latlng, markerOptions)); // Calls the location and marker

		
		<!-- CLOSE FUNCTION -->	  
      }
    }