//<![CDATA[

  if (GBrowserIsCompatible()) {	  
	var map = new GMap2(document.getElementById("map"));
	map.addControl(new GSmallMapControl());
	map.setCenter(new GLatLng(50.950455, -2.678062), 12);	
	
	// create the variables for the custom icon
	var ufo = new GIcon();
	ufo.image = "http://www.aztec4design.com/images/ufo-icon.png";
	ufo.shadow = "http://www.aztec4design.com/images/ufo-icon-shadow.png";
	ufo.shadowSize = new GSize(51, 34);
	ufo.iconSize = new GSize(51, 34);
	ufo.iconAnchor = new GPoint(26, 17);
	ufo.infoWindowAnchor = new GPoint(51, 34);
	
	// setup our GMarkerOptions object literal - no idea what this means!
	markerOptions = { icon:ufo };
	
	var point = new GLatLng(50.950455, -2.678062);	
	map.addOverlay(new GMarker(point, markerOptions));
  }	

//]]>