// JavaScript Document

//<![CDATA[

function load() {
  if (GBrowserIsCompatible()) {
	var map = new GMap2(document.getElementById("map"));
	map.addControl(new GSmallMapControl());
	map.addControl(new GMapTypeControl());
	map.setCenter(new GLatLng(54.9710856, -1.6272574), 15);
	//map.openInfoWindow(map.getCenter(),
	  //         document.createTextNode("Different"));
	var icon = new GIcon();
	icon.image = "http://www.different-uk.com/images/mapIcon.png";
	icon.iconSize = new GSize(126, 50);
	icon.shadow = "http://www.different-uk.com/images/mapIconShadow.png";
	icon.shadowSize = new GSize(182, 50);
	icon.iconAnchor = new GPoint(126, 50);
	icon.infoWindowAnchor = new GPoint(5, 1);

	var point = new GLatLng(54.9710856, -1.6272574);
	map.addOverlay(new GMarker(point, icon));
  }
}

//]]>