//<![CDATA[

function load() {
  if (GBrowserIsCompatible()) {
    var map = new GMap2(document.getElementById("map"));
	map.addControl(new GSmallMapControl());
map.addControl(new GMapTypeControl());
    map.setCenter(new GLatLng(43.4059 , -2.9619), 12);
	map.openInfoWindow(map.getCenter(),
               document.createTextNode("Kaktum"));
	// Place a marker in the center of the map and open the info window
// automatically
var marker = new GMarker(map.getCenter());
GEvent.addListener(marker, "click", function() {
marker.openInfoWindowTabsHtml(infoTabs);
});
map.addOverlay(marker);
marker.openInfoWindowTabsHtml(infoTabs);
  }
}

//]]>