    // ----------------------------------------------------------------
    // Getting the latitude/longtitude values for each map location!
    // ----------------------------------------------------------------
    var map_locations = [[51.408445,-2.303787,"","Shockerwick Studios"]];
	// Diplay multiple points by adding [51.37638, -2.35432, "web link", "Title"], above the first point

    function load() {
        if (GBrowserIsCompatible()) {
            // create a new map
            var map = new GMap2(document.getElementById("map"));
    
            // start out by centring on location - zoom level 15
            map.setCenter(new GLatLng(51.408445,-2.303787), 12);
    
            // add a couple of google map widgets
            //map.addControl(new GLargeMapControl()); // zoom/pan control
            //map.addControl(new GMapTypeControl());  // map/satellite control
			//map.addControl( new GOverviewMapControl(new GSize(100,100)) );	
    
            // add a marker for each map location
            for (var i=0; i < map_locations.length; i++) {
                map.addOverlay(createMarker(new GLatLng(map_locations[i][0], map_locations[i][1]), 
                	map_locations[i][2], 
                    map_locations[i][3])
				);
            }
        }
    }

    // -------------------------------------------
    // Create a marker with a link to more info
    // -------------------------------------------
    function createMarker(point, url, name) {
        var marker = new GMarker(point);
        return marker;
    }
