//<![CDATA[
    function load() {
      if (GBrowserIsCompatible()) {
    var icon = new GIcon();
	icon.image = "http://labs.google.com/ridefinder/images/mm_20_red.png";
	icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
	icon.iconSize = new GSize(12, 20);
	icon.shadowSize = new GSize(22, 20);
	icon.iconAnchor = new GPoint(6, 20);
	icon.infoWindowAnchor = new GPoint(7, -20);
        var map = new GMap2(document.getElementById("map"));
        map.setCenter(new GLatLng(46.99424589043851, 8.067312240600586), 12);
        map.addControl(new GSmallMapControl());
        map.addControl(new GMapTypeControl());
        map.setMapType(G_HYBRID_TYPE);
		var infoTabs = [
		new GInfoWindowTab("Entlebuch", "<font face=Arial size=2>A map of Entlebuch, Switzerland; the origin and<br />home of the <a href=http://www.urban-max.com/history.asp target=_top>Entlebucher Sennenhund</a>.<br />&larr; Use the arrow and zoom controls at the upper left<br />of this interactive map to navigate.</font>"),
		new GInfoWindowTab("Details", "<font face=Arial size=2>As with all Sennenhunden, the character is lively,<br />attentive and very attached to their humans. They<br />have a strong inner drive to herd and guard, but do<br />not usually inherit aggressiveness. <a href=http://www.urban-max.com/characteristics.asp target=_top>Read more here</a>...</font>")
];
var marker = new GMarker(map.getCenter());
GEvent.addListener(marker, "click", function() {
  marker.openInfoWindowTabsHtml(infoTabs);
});
map.addOverlay(marker);
marker.openInfoWindowTabsHtml(infoTabs);
      }
    }
    //]]>
