function load() {
if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
		
		map.addControl(new GSmallMapControl());
		map.addControl(new GMapTypeControl());
        map.setCenter(new GLatLng(43.28529706427635, -2.001185417175293),4);
		
		// crear el icono sobre el mapa		
		var icon = new GIcon();
		icon.image = "/img/arkaitz_icon.gif";
		icon.iconSize = new GSize(27, 27);
		//icon.shadow = "";
		//icon.shadowSize = new GSize(0, 0);
		icon.iconAnchor = new GPoint(0, 5);
		icon.infoWindowAnchor = new GPoint(11, 0);
		
		//crear el contenido de la ventana
		var address = '<img src="/img/arkaitz_logo_small.gif" alt="Arkaitz A&ntilde;orgako Dantzariak" width="100" height="46" style="margin:0; padding:0; display:block;" /><p style="font:normal 10px/14px Verdana, sans-serif; display:block; margin:5px 0 0; padding:0; color:#58595b;"><strong style="color:#231f20;">Arkaitz A&ntilde;orgako Dantzariak</strong><br />Antton Aiestaran Kulturetxea<br />A&ntilde;orga Hiribidea<br />20018 - Donostia (Gipuzkoa)</p>';

        // Place a marker in the center of the map and open the info window
        // automatically
        var marker = new GMarker(map.getCenter(), icon);
        GEvent.addListener(marker, "click", function() {
		marker.openInfoWindowHtml(address); } );
        map.addOverlay(marker);
        //marker.openInfoWindowHtml(info);
      }
    }
