//<![CDATA[

function load() {	
  if (GBrowserIsCompatible()) {	  
	var map = new GMap2(document.getElementById("map"));
	map.addControl(new GSmallMapControl());
	map.setCenter(new GLatLng(50.946822, -2.610168), 15);	
	
	// create the variables for the custom icon
	var ufo = new GIcon();
	ufo.image = "http://www.aztec4design.com/images/icon-map.png";
	ufo.iconSize = new GSize(43, 40);
	ufo.iconAnchor = new GPoint(25, 5);
	ufo.infoWindowAnchor = new GPoint(43, 40);
	
	// setup our GMarkerOptions object literal - no idea what this means!
	markerOptions = { icon:ufo };
	
	var point = new GLatLng(50.946822, -2.610168);	
	map.addOverlay(new GMarker(point, markerOptions));
	// map.addControl(new GMapTypeControl());
	// map.setMapType(G_HYBRID_MAP);
	}	
}

//]]>