//<![CDATA[

function load() {	
  if (GBrowserIsCompatible()) {	  
	var map = new GMap2(document.getElementById("map"));
	map.addControl(new GSmallMapControl());
	map.setCenter(new GLatLng(50.9271777941361, -2.47688948362134), 11);	
	
	// create the variables for the custom icon
	var mun = new GIcon();
	mun.image = "http://www.mundenhouse.co.uk/images/map-icon.png";
	mun.shadow = "http://www.mundenhouse.co.uk/images/map-icon-shadow.png";
	mun.shadowSize = new GSize(60, 60);
	mun.iconSize = new GSize(60, 60);
	mun.iconAnchor = new GPoint(30, 30);
	mun.infoWindowAnchor = new GPoint(60, 60);
	
	// setup our GMarkerOptions object literal - no idea what this means!
	markerOptions = { icon:mun };
	
	var point = new GLatLng(50.9271777941361, -2.47688948362134);	
	map.addOverlay(new GMarker(point, markerOptions));
	// map.addControl(new GMapTypeControl());
	// map.setMapType(G_HYBRID_TYPE); 
	}	
}

//]]>
