function load() {	

	if (GBrowserIsCompatible()) {
	
		// displays textual "Zoom In" and "Zoom Out" buttons
		function TextualZoomControl() { }
		TextualZoomControl.prototype = new GControl();
		TextualZoomControl.prototype.initialize = function(map) {
			var container = document.createElement("div");
			var zoomInDiv = document.createElement("div");
			this.setButtonStyle_(zoomInDiv);
			container.appendChild(zoomInDiv);
			zoomInDiv.appendChild(document.createTextNode("Zoom In"));
		GEvent.addDomListener(zoomInDiv, "click", function() {
			map.zoomIn();
			}
		);
		
		var zoomOutDiv = document.createElement("div");
		this.setButtonStyle_(zoomOutDiv);
		container.appendChild(zoomOutDiv);
		zoomOutDiv.appendChild(document.createTextNode("Zoom Out"));
		GEvent.addDomListener(zoomOutDiv, "click", function() {
			map.zoomOut();
			}	
		);
		
		map.getContainer().appendChild(container);
			return container;
		}
	
		// Move the control to bottom left with padding: 50, 289
		TextualZoomControl.prototype.getDefaultPosition = function() {
			return new GControlPosition(G_ANCHOR_TOP_LEFT, new GSize(10, 10));
		}
			
		// Sets the CSS for the button element.
		TextualZoomControl.prototype.setButtonStyle_ = function(button) {
			button.style.textDecoration = "none";
			button.style.fontSize = "11px";
			button.style.color = "#CD7900";
			button.style.backgroundColor = "white";
			button.style.border = "1px solid #36353B";
			button.style.padding = "2px";
			button.style.marginBottom = "3px";
			button.style.textAlign = "center";
			button.style.width = "6em";
			button.style.cursor = "pointer";
			button.style.zIndex = "1000";
		}

	
		var map = new GMap2(document.getElementById("divMap"));	
		map.addControl(new TextualZoomControl());
		map.setCenter(new GLatLng(50.748418, -1.660266), 15);
	// 14
	
		// Create marker icon
		var icon = new GIcon();
		icon.image = "/images/ico_map_pin.png";
		icon.shadow = "/images/ico_map_shadow.png";
		icon.iconSize = new GSize(58, 50);
		icon.shadowSize = new GSize(65, 50);
		icon.iconAnchor = new GPoint(25, 53);
		icon.infoWindowAnchor = new GPoint(5, 1);
		
		// 	Place marker Icon
		var point = new GLatLng("50.748418", "-1.660266");
		map.addOverlay(new GMarker(point, icon));
	
	
	
	/*		// 	Place marker Icon
		var point = new GLatLng("51.7763", "-1.4952");
		map.addOverlay(new GMarker(point, icon));*/
	
	}
}
