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