function document_ready() { // Blocs deroulant $(".zone_deroulante").hide(); $("a.lien_deroulant").click( function(){ return bloc_deroulant($(this)); } ); // Encadre $(".fcktexte .encadre").each(function() { var bottom = document.createElement('div'); $(bottom).addClass("encadre_bottom"); $(bottom).insertAfter($(this)); }); // Tag cloud $(".tag_cloud h1 span").hide(); // Tableaux $(".fcktexte table").attr("cellSpacing","0").attr("border","0").attr("cellPadding","0"); var tr = 1; $(".fcktexte table tbody").each(function() { tr = 1; $(this).children("tr").not(".header").each(function() { if ((tr % 2) == 0) $(this).addClass("paire"); tr++; }); }); $(".fcktexte table tbody tr:first-child td").addClass("premier_ligne"); $(".fcktexte table tbody tr td:first-child").addClass("premier_colonne"); // Bannieres // Initialisation front_id = getFirstBanniere(); $('#banniere_'+front_id).addClass("selected"); $("#banniere .media .front").html($("#b"+front_id).html()); $("#banniere .media .rear").html($("#b"+(front_id+1)).html()); if ($.browser.msie) $('#banniere .media .fleche').addClass("fleche_msie"); // IE PNG // Evenements $(nav_container+" a").hover(function(){ if (!banniere_anim_lock) { banniere_anim_lock = true; stop_banniere(); display_banniere(parseInt($(this).attr('id').replace("banniere_",""))) } }, function () { if (!banniere_anim) banniere_anim = window.setTimeout('anim_bannieres()',anim_interval); }); banniere_anim = window.setTimeout('anim_bannieres()',anim_interval); $('#btn_imprimer').click(function () { window.print(); return false; }); // Demande de rencontre $(".email a").html(ts_joindre_rencontre); $(".email a").attr('href','mailto:'+'cld'+'hsm'+String.fromCharCode(40+24)+'cld'+'hsm.qc'+'.ca'); // Carousel de photos so_init(); }