/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
//Google Maps
  //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
	var marker = new GMarker(new GLatLng(52.952665, -1.151183));

        var map = new GMap2(document.getElementById("map"));
       // map.setCenter(new GLatLng(52.951922, -1.152325), 17);
map.setCenter(new GLatLng(52.952665, -1.151183), 15);
	map.setMapType(G_NORMAL_MAP);
	map.addOverlay(marker);
map.addControl(new GSmallMapControl());
      }
    }

    //]]


