  
  
  google.load("maps", "2.x");
   
  // Call this function when the page has been loaded
  function initialize() {
    if (google.maps.BrowserIsCompatible()) {
      var map = new google.maps.Map2(document.getElementById("santa_marta_mapa"));
      map.setCenter(new google.maps.LatLng(41.394015,2.160616), 18);
      map.setUIToDefault();
	  
	  // create our own icon
  
	  var factIcon = new GIcon(G_DEFAULT_ICON);
      factIcon.image = "http://www.santa-marta.com/maps/pin.png";
      factIcon.iconSize = new GSize(40, 40);
	  // Set up our GMarkerOptions object
      markerOptions = { icon:factIcon };

      // Todos los puntos que se muestran:

		marker01 = new google.maps.Marker(new google.maps.LatLng(41.394015,2.160616), markerOptions);
        google.maps.Event.addListener(marker01, "click", function() {
          marker01.openInfoWindowHtml(
            '<div class="popup">' +
			    '<img src="http://www.santa-marta.com/maps/logo_maps.gif" /><br />C/ Proven&ccedil;a 276<br />08008 Barcelona<br />+34 934 869 458<br /><br />' +
            '</div>'
          );
        });
        map.addOverlay(marker01);
		                   
    }
  }
  google.setOnLoadCallback(initialize);
