//<![CDATA[
    function load() 
	{
      if (GBrowserIsCompatible()) 
	  {
        var map = new GMap2(document.getElementById("map"));
        map.addControl(new GSmallMapControl());
    	map.setCenter(new GLatLng(55.918839,-3.443313), 12);
           
		
		// Create our "tiny" marker icon
		var icon = new GIcon();
		icon.image = "images/mapicon.png";
		icon.iconSize = new GSize(51,43);
		icon.iconAnchor = new GPoint(20, 40);
		
		function createMarker(point, text, title, icon) 
		{
          	var marker = new GMarker(point,{title:title, icon:icon});
        	GEvent.addListener( marker, function() { text; });
          	return marker;
        }
                		var marker = createMarker( new GLatLng(55.918839,-3.443313), '<table></table>', 'Country Lifestyle Homes', icon);
        		map.addOverlay(marker);
            }
    }
    //]]>