
var icon = new GIcon();
					icon.image = "image/bespoke/aba_marker.png";
					icon.shadow = "";
					icon.iconSize = new GSize(42, 52);
					icon.shadowSize = new GSize(61, 30);
					icon.iconAnchor = new GPoint(35, 44);
					icon.infoWindowAnchor = new GPoint(35, 44);

				
				
					function createMap(){
						function createInfoMarker(point, address) {
							var marker = new GMarker(point,icon);
							GEvent.addListener(marker, "click",
							function() {
								marker.openInfoWindowHtml(address);
							}
						);
						return marker;
					}
										
					var map = new GMap(document.getElementById("gMap"));
					map.centerAndZoom(new GPoint(-1.675252, 53.869551), 4);
					var point = new GPoint(-1.675252, 53.864551);
					var address = '<strong>Ashley Bolser Agency</strong><br />3 Moorfield Mills<br />Yeadon<br />Leeds<br />West Yorkshire<br />LS19 7EA';
					var marker = createInfoMarker(point, address);
					map.addOverlay(marker);
					map.addControl(new GSmallZoomControl());
										
					}
										
					if(document.getElementById && document.createTextNode) {
						window.onload=function(){
							createMap();
						}
					}
					