/* script global, est appellé dans chaque page */ if (isIE6()) document.location='/js/../ie6.php'; $(function() { // affiche le calendrier if ($('#calendar').html()!=null) $('#calendar').load('/js/../ajax/calendar.php'); // prépare les roll-over des images (image.gif->image_.gif) ayant la class .rollover PEPS.rollover.init(); // Lightbox if ($('.lightbox').html()!=null) $('.lightbox a').lightBox({ imageBlank:'/js/../js/lightbox/images/lightbox-blank.gif', imageBtnClose:'/js/../js/lightbox/images/lightbox-btn-close.gif', imageBtnNext:'/js/../js/lightbox/images/lightbox-btn-next.gif', imageBtnPrev:'/js/../js/lightbox/images/lightbox-btn-prev.gif', imageLoading:'/js/../js/lightbox/images/lightbox-ico-loading.gif', overlayBgColor: '#000', overlayOpacity: 0.8, containerResizeSpeed: 300, txtImage: 'Image', txtOf: 'sur' }); // validation jQuery.validator.messages.required=''; if ($('.validate')) $('.validate').validate(); if ($('.validate2')) $('.validate2').validate(); }); function isIE6() { return /msie|MSIE 6/.test(navigator.userAgent); } function openwin(url) { window.open(url, 'popup_name', 'width=900, height=600, toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no'); } function setMenu(url) // used by Flash in index page to emulate links click { loc='/js/../fr/'+url; //alert(loc); document.location=loc; } // news ticker newsid=0; newsSpeed=1200; // ms newsDisplay=10000; // ms function showNews() { if (newsid>0) //$('#news-'+newsid).effect('slide', { mode: 'hide', direction: 'left' }); $('#news-'+newsid).hide(); newsid+=1; if (newsid>$('.news').length) newsid=1; $('#news-'+newsid).effect('slide',{direction:'right'}, newsSpeed /*, function(){ $('#news-'+newsid).effect('bounce', {direction:'right',distance:50,times:3}); }*/ ); if ($('.news').length>1) setTimeout("showNews()", newsDisplay); } function displayVideo(root, spectacleID, filename) { var so = new SWFObject(root+"/../img/video.swf", "video_player", "753", "300", "10", "#B5ADA8"); so.addParam("scale", "noscale"); so.addParam("wmode", "transparent"); so.addVariable("type_media", "video"); so.addVariable("media_url", root+"/../img/spectacles/"+spectacleID+"/pics/"+filename); so.addVariable("sound", "1"); so.write("nav_pic"); } function switchSound() { $.ajax({ url: "/js/../switchsound.php", success: function(){ src=$('#sound-pic').attr('src') if (src.match(/sound_.gif/)) { $('#sound-pic').attr('src', src.replace('sound_','sound')); } else { $('#sound-pic').attr('src', src.replace('sound','sound_')); } }}); if ($("#video_player")) document.getElementById("video_player").switchSound(); } // ****************** UNUSED ****************** // fonctions pour le header Flash /*function depthIn() { $('#flash').css('z-index',50); } function depthOut() { $('#flash').css('z-index',0); }*/