
function load() {

  	var map = new GMap2(document.getElementById("map"));
	var point = new GLatLng(50.13334,-5.15855);
	map.setCenter(point, 9);
	map.setUIToDefault();
		
	// Create a base icon for all of our markers that specifies the
	// shadow, icon dimensions, etc.
	var baseIcon = new GIcon();
	baseIcon.shadow = "images/shadow.png";
	baseIcon.image = "images/bird.png";
	baseIcon.iconSize = new GSize(60, 50);
	baseIcon.shadowSize = new GSize(60, 50);
	baseIcon.iconAnchor = new GPoint(9, 34);
	baseIcon.infoWindowAnchor = new GPoint(9, 2);
	baseIcon.infoShadowAnchor = new GPoint(18, 25);
	markerOptions = { icon:baseIcon };
	var marker = new GMarker(point, markerOptions);


	map.addOverlay(marker, 0);
	
	
}