function document_ready() { var fadeout = 0.2 $("#film_suivant").fadeTo("fast", fadeout); $("#musique_suivant").fadeTo("fast", fadeout); if (GBrowserIsCompatible()) { var map = new GMap2(document.getElementById("map")); map.setCenter(new GLatLng(46.340717,-72.542231), 15); map.addControl(new GSmallMapControl()); var baseIcon = new GIcon(); baseIcon.shadow = ""; baseIcon.iconSize = new GSize(24, 22); baseIcon.shadowSize = new GSize(22, 20); baseIcon.iconAnchor = new GPoint(6, 20); baseIcon.infoWindowAnchor = new GPoint(5, 1); var icon01 = new GIcon(baseIcon) icon01.image = "/images/icones/gicon.gif"; var marker01 = new GMarker(new GLatLng(46.340717,-72.541481),icon01); var it = new GInfoWindowTab("Localisation",$('#adresse').html()); GEvent.addListener(marker01, "click", function() { marker01.openInfoWindowTabsHtml([it]); }); map.addOverlay(marker01); marker01.openInfoWindowTabsHtml([it]); } window.onunload = GUnload; } function un_instant(conteneur,show) { if (show) { conteneur.prepend('
'); conteneur.children('.un_instant').children('div').html('Un instant...'); } else { conteneur.children('.un_instant').remove(); } }