function load()
{
    if (GBrowserIsCompatible())
    {
        var map = new GMap2(document.getElementById("map"));
        map.addControl(new GSmallMapControl());
        map.setCenter(new GLatLng(46.454475,-71.0290183), 14);
        
        // Enable Marker Manager
        var mgrOptions = { borderPadding: 100, trackMarkers: true };
        var mgr = new GMarkerManager(map, mgrOptions);
        
        // Create our "tiny" marker icon
        var icon = new GIcon();
        icon.image = "http://ovascene.feuvertdesign.com/images/gmaps/marker_ovascene_45.png";
        icon.image = "http://ovascene.feuvertdesign.com/images/gmaps/marker_ovascene_30.png";
        icon.shadow = "";
        icon.iconSize = new GSize(98, 30);
        icon.shadowSize = new GSize(65, 65);
        icon.iconAnchor = new GPoint(49, 15);
        icon.infoWindowAnchor = new GPoint(15, 15);
        
        // Our info window content
        var infoTabs1 = [
            new GInfoWindowTab("Tab #1", "<div style=\"text-align:left; font-family:Arial, sans-serif;font-size:12px;\"><h4 style=\"font-size:14px;\">Ovasc&egrave;ne</h4>919, Route Saint-Martin<br>Sainte-Marie (Qu&eacute;bec)&nbsp;&nbsp;G6E 1E6<br>T&eacute;l. : 418 387-2200</div>")
        ];// Place a marker in the center of the map and open the info window automatically
        
        var marker1 = new GMarker(new GLatLng(46.454675,-71.029243), icon);
        GEvent.addListener(marker1 , "click", function()
        {
            marker1.openInfoWindowTabsHtml(infoTabs1);
        });
        map.addOverlay(marker1);
    }
}
