function load() {
	if (GBrowserIsCompatible()) { 

      // A function to create the marker and set up the event window
      // Dont try to unroll this function. It has to be here for the function closure
      // Each instance of the function preserves the contends of a different instance
      // of the "marker" and "html" variables which will be needed later when the event triggers.    
      function createMarker(point,html) {
        var marker = new GMarker(point);
        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(html);
        });
        return marker;
      }

      // Display the map, with some controls and set the initial location 
      var map = new GMap2(document.getElementById("map"));
      map.addControl(new GLargeMapControl());
      map.addControl(new GMapTypeControl());
      map.setCenter(new GLatLng(51.515393,-2.574663),13);
    
      // Set up three markers with info windows 
    
var point = new GLatLng(51.510772,-2.580199);
      var marker = createMarker(point,'<div class="google"><h1>Airbus</h1><br><a href="company_info.php?company_id=2">Company info</a><br><a href="company_careers_list.php?company_id=2">Careers at this company</a></div>')
      map.addOverlay(marker);

      var point = new GLatLng(51.529478,-2.56917);
      var marker = createMarker(point,'<div class="google"><h1>Rolls Royce</h1><br><a href="company_info.php?company_id=3">Company info</a><br><a href="company_careers_list.php?company_id=3">Careers at this company</a></div>')
      map.addOverlay(marker);

      var point = new GLatLng(51.519372,-2.568913);
      var marker = createMarker(point,'<div class="google"><h1>Precision Parts</h1><br><a href="company_info.php?company_id=4">Company info</a><br><a href="company_careers_list.php?company_id=4">Careers at this company</a></div>')
      map.addOverlay(marker);
	  
	  var point = new GLatLng(51.514698,-2.574277);
      var marker = createMarker(point,'<div class="google"><h1>Ballard Bearings</h1><br><a href="company_info.php?company_id=1">Company info</a><br><a href="company_careers_list.php?company_id=1">Careers at this company</a></div>')
      map.addOverlay(marker);

      var point = new GLatLng(51.507387,-2.5758);
      var marker = createMarker(point,'<div class="google"><h1>Western Aerospace Alloys</h1><br><a href="company_info.php?company_id=5">Company info</a><br><a href="company_careers_list.php?company_id=5">Careers at this company</a></div>')
      map.addOverlay(marker);

    }
}

