function load() {
      if (GBrowserIsCompatible()) {
        //if Google maps works, then make the background of the map div less obtrusive
	//(it defaults to the old map image)
	 document.getElementById("map").style.background = "url(http://www.google.com/logos/Logo_25gry.gif)";
      
        //Google maps stuff 
        var map = new GMap2(document.getElementById("map"));
	 map.addControl(new GSmallMapControl());
        map.addControl(new GMapTypeControl());
        map.setCenter(new GLatLng(52.814339,-2.398697), 9);
        
        //create our flower marker icon
			var icon = new GIcon();
			icon.image = "/wp-content/sunflower.png";
			//icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
			icon.iconSize = new GSize(43, 47);
			//icon.shadowSize = new GSize(22, 20);
			icon.iconAnchor = new GPoint(12, 46);
			icon.infoWindowAnchor = new GPoint(5, 1);
	
	 //add a balloon marker thing on our house
	 var point = new GLatLng(52.814339,-2.398697);
        map.addOverlay(new GMarker(point, icon));
	  GEvent.addListener(marker, "click",
	    function() 
	    {
             marker.openInfoWindowHtml("Aylesland House"); 
	    });
    }
}