function load() {
      if (GBrowserIsCompatible()) {
        
				document.getElementById("address").style.display = 'none';       
        var map = new GMap2(document.getElementById("map"));
        map.setMapType(G_SATELLITE_MAP);
				map.addControl(new GLargeMapControl());
				
        // Coordinaten
        var clubhuis = new GLatLng(52.33963,4.935106);
        //var bus = new GLatLng(52.2910,4.85377);
        //var metro = new GLatLng(52.2908,4.8639);
        
        map.setCenter(clubhuis, 17);
        
       	// Clubhuis marker
       	var markerClubhuis = new GMarker(clubhuis);
        map.addOverlay(markerClubhuis);
        
        // Clubhuis info window
        
        var content = document.getElementById('address').innerHTML+'<p><a href="http://maps.google.com/maps?hl=en&daddr=Drie+Burgpad+9,+1097+Amsterdam&geocode=CdCHE_Vf10TAFYqgHgMdMUxLAA&dirflg=&saddr=&f=d&sll=52.338826,4.934705&sspn=0.008836,0.01929&ie=UTF8&z=16">Get driving directions to here</a> (opens a new window)</p>';
        
        markerClubhuis.openInfoWindowHtml(content);
        GEvent.addListener(markerClubhuis, "click", function() {
    			markerClubhuis.openInfoWindowHtml(content);
  				} 
  			)

				// Bus label
        var busLabel = new ELabel(bus, "<div>Bus&nbsp;170</div><span>X</span>", "busmetro",new GSize(-50,0));
        map.addOverlay(busLabel);
        
        // Metro label
        var metroLabel = new ELabel(metro, "<div>Metro&nbsp;51</div><span>X</span>", "busmetro",new GSize(-50,0));
        map.addOverlay(metroLabel);

      }
    }
