//<![CDATA[

function load() {	
  if (GBrowserIsCompatible()) {	  
	var map = new GMap2(document.getElementById("map-content"));
	map.addControl(new GSmallMapControl());
	map.setCenter(new GLatLng(39.508014, 2.756195), 12);	
	
	// create the variables for the custom icon
	var ufo = new GIcon();
	ufo.image = "http://www.aztecmediahosting.com/clients/atlanta/images/icon-map.png";
	ufo.shadow = "http://www.aztecmediahosting.com/clients/atlanta/images/icon-map-shadow.png";
	ufo.shadowSize = new GSize(62, 72);
	ufo.iconSize = new GSize(62, 72);
	ufo.iconAnchor = new GPoint(31, 36);
	ufo.infoWindowAnchor = new GPoint(31, 36);
	
	// setup our GMarkerOptions object literal - no idea what this means!
	markerOptions = { icon:ufo };
	
	var point = new GLatLng(39.508014, 2.756195);	
	map.addOverlay(new GMarker(point, markerOptions));
  }	
}

//]]>
