	    //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.addControl(new GSmallMapControl());
        map.addControl(new GMapTypeControl());
        map.setCenter(new GLatLng(45.186604,5.683064), 13);
// Our info window content
var infoTabs = [
 new GInfoWindowTab("Cuisine", "Cuisine centrale.<br>1, rue René Camphin, 38600 - Fontaine<br>Téléphone : 0 811 740 047<br>Fax : 0 811 740 048"),
 new GInfoWindowTab("Siege", "Siege sociale.<br>5, place des Ecrins BP 131 - 38630 Fontaine Cedex<br>Téléphone : 0 811 740 045<br>Fax : 0 811 740 046")
];
// 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);
      }
    }

    //]]>
