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


    function initialize() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("location-map"));
        map.setCenter(new GLatLng(51.52071, -0.14360), 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);
		
		
		// Hallam Icon
		var HallamIcon = new GIcon();
		HallamIcon.image = "/images/common/London-Conference-Venues-Hallam-Tab.png";
		HallamIcon.iconSize = new GSize(62, 74);
		HallamIcon.iconAnchor = new GPoint(7, 67);
		HallamIcon.infoWindowAnchor = new GPoint(7, 67);

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


		<!-- CLOSE FUNCTION -->	  
      }
    }
