 //<![CDATA[



    function loadmap() {

      if (GBrowserIsCompatible()) {

        var map = new GMap2(document.getElementById("map"));

		map.addControl(new GSmallMapControl());

		//map.addControl(new GMapTypeControl());

		//OLDmap.setCenter(new GLatLng(51.467537, -0.296545), 12);
		map.setCenter(new GLatLng(51.459475, -0.494599), 9);

       // map.openInfoWindow(map.getCenter(),

	   //document.createTextNode("Living Stone \n Natural Stone Paving"));

	   // Create our "tiny" marker icon

var icon = new GIcon();

//icon.image = "http://labs.google.com/ridefinder/images/mm_20_red.png";

icon.image = "/_resources/images/pointer.png";

//icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";

//icon.shadow = "http://www.frazercox.co.uk/livingstone/images/maplogoshadow.png";

icon.iconSize = new GSize(76, 44);

//icon.shadowSize = new GSize(170, 104);

icon.iconAnchor = new GPoint(0, 44);

icon.infoWindowAnchor = new GPoint(5, 1);

  var point = new GLatLng( 51.459475, -0.494599);

  map.addOverlay(new GMarker(point, icon));



      }

    }






    //]]>
