function load()
{
    if (GBrowserIsCompatible())
    {
        var map = new GMap2(document.getElementById("map"));
       	// map.addControl(new GSmallMapControl());
        map.setCenter(new GLatLng(46.1254475,-71.0290183), 8);
		map.disableDoubleClickZoom();
		map.disableDragging()
        
        // 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://mix997.feuvertdesign.com/media/img/marker_mix.png";
        icon.shadow = "";
        icon.iconSize = new GSize(450, 450);
        icon.shadowSize = new GSize(65, 65);
        icon.iconAnchor = new GPoint(275, 275);
        icon.infoWindowAnchor = new GPoint(275, 275);
        
        // 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;\">Cool FM 103,5</h4><b>Format :</b> Succès musicaux des années 70-90 <br /> Nouvelles locales et régionales et émissions à contenu verbal<br /><b>Auditoire :</b> Homme et femme de 25 à 54 ans<br /><b>Fréquences :</b> 103,5 et 102,1 (câble)</div>")
        ];// Place a marker in the center of the map and open the info window automatically
        
        var marker1 = new GMarker(new GLatLng(45.924675,-70.399243), icon);
        GEvent.addListener(marker1 , "click", function()
        {
            marker1.openInfoWindowTabsHtml(infoTabs1);
        });
        map.addOverlay(marker1);
    }
}
