/*
 * FeatureList - simple and easy creation of an interactive "Featured Items" widget
 * Examples and documentation at: http://jqueryglobe.com/article/feature_list/
 * Version: 1.0.0 (01/09/2009)
 * Copyright (c) 2009 jQueryGlobe
 * Licensed under the MIT License: http://en.wikipedia.org/wiki/MIT_License
 * Requires: jQuery v1.3+
*/
;(function($) {$.fn.featureList = function(options) {var tabs	= $(this);var output	= $(options.output);new jQuery.featureList(tabs, output, options);return this;};$.featureList = function(tabs,output, options) {function slide(nr) {if (typeof nr == "undefined") {nr = visible_item + 1;nr = nr >= total_items ? 0 : nr;}tabs.removeClass('current').filter(":eq(" + nr + ")").addClass('current');output.stop(true, true).filter(":visible").fadeOut();output.filter(":eq(" + nr + ")").fadeIn(function() {visible_item = nr;	});}var options			= options || {}; var total_items		= tabs.length;var visible_item	= options.start_item || 0;options.pause_on_hover		= options.pause_on_hover		|| true;options.transition_interval	= options.transition_interval	|| 5000;output.hide().eq( visible_item ).show();tabs.eq( visible_item ).addClass('current');tabs.click(function() {if ($(this).hasClass('current')) {return false;}slide( tabs.index( this) );});if (options.transition_interval > 0) {var timer = setInterval(function () {slide();}, options.transition_interval);if (options.pause_on_hover) {tabs.mouseenter(function() {clearInterval( timer );}).mouseleave(function() {clearInterval(timer );timer = setInterval(function () {slide();}, options.transition_interval);});}}};})(jQuery);

/**
 * jQuery.LocalScroll - Animated scrolling navigation, using anchors.
 * Copyright (c) 2007-2009 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
 * Dual licensed under MIT and GPL.
 * Date: 3/11/2009
 * @author Ariel Flesler
 * @version 1.2.7
 **/
;(function($){var l=location.href.replace(/#.*/,'');var g=$.localScroll=function(a){$('body').localScroll(a)};g.defaults={duration:1e3,axis:'y',event:'click',stop:true,target:window,reset:true};g.hash=function(a){if(location.hash){a=$.extend({},g.defaults,a);a.hash=false;if(a.reset){var e=a.duration;delete a.duration;$(a.target).scrollTo(0,a);a.duration=e}i(0,location,a)}};$.fn.localScroll=function(b){b=$.extend({},g.defaults,b);return b.lazy?this.bind(b.event,function(a){var e=$([a.target,a.target.parentNode]).filter(d)[0];if(e)i(a,e,b)}):this.find('a,area').filter(d).bind(b.event,function(a){i(a,this,b)}).end().end();function d(){return!!this.href&&!!this.hash&&this.href.replace(this.hash,'')==l&&(!b.filter||$(this).is(b.filter))}};function i(a,e,b){var d=e.hash.slice(1),f=document.getElementById(d)||document.getElementsByName(d)[0];if(!f)return;if(a)a.preventDefault();var h=$(b.target);if(b.lock&&h.is(':animated')||b.onBefore&&b.onBefore.call(b,a,f,h)===false)return;if(b.stop)h.stop(true);if(b.hash){var j=f.id==d?'id':'name',k=$('<a> </a>').attr(j,d).css({position:'absolute',top:$(window).scrollTop(),left:$(window).scrollLeft()});f[j]='';$('body').prepend(k);location=e.hash;k.remove();f[j]=d}h.scrollTo(f,b).trigger('notify.serialScroll',[f])}})(jQuery);
/**
 * jQuery.ScrollTo - Easy element scrolling using jQuery.
 * Copyright (c) 2007-2009 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
 * Dual licensed under MIT and GPL.
 * Date: 5/25/2009
 * @author Ariel Flesler
 * @version 1.4.2
 *
 * http://flesler.blogspot.com/2007/10/jqueryscrollto.html
 */
;(function(d){var k=d.scrollTo=function(a,i,e){d(window).scrollTo(a,i,e)};k.defaults={axis:'xy',duration:parseFloat(d.fn.jquery)>=1.3?0:1};k.window=function(a){return d(window)._scrollable()};d.fn._scrollable=function(){return this.map(function(){var a=this,i=!a.nodeName||d.inArray(a.nodeName.toLowerCase(),['iframe','#document','html','body'])!=-1;if(!i)return a;var e=(a.contentWindow||a).document||a.ownerDocument||a;return d.browser.safari||e.compatMode=='BackCompat'?e.body:e.documentElement})};d.fn.scrollTo=function(n,j,b){if(typeof j=='object'){b=j;j=0}if(typeof b=='function')b={onAfter:b};if(n=='max')n=9e9;b=d.extend({},k.defaults,b);j=j||b.speed||b.duration;b.queue=b.queue&&b.axis.length>1;if(b.queue)j/=2;b.offset=p(b.offset);b.over=p(b.over);return this._scrollable().each(function(){var q=this,r=d(q),f=n,s,g={},u=r.is('html,body');switch(typeof f){case'number':case'string':if(/^([+-]=)?\d+(\.\d+)?(px|%)?$/.test(f)){f=p(f);break}f=d(f,this);case'object':if(f.is||f.style)s=(f=d(f)).offset()}d.each(b.axis.split(''),function(a,i){var e=i=='x'?'Left':'Top',h=e.toLowerCase(),c='scroll'+e,l=q[c],m=k.max(q,i);if(s){g[c]=s[h]+(u?0:l-r.offset()[h]);if(b.margin){g[c]-=parseInt(f.css('margin'+e))||0;g[c]-=parseInt(f.css('border'+e+'Width'))||0}g[c]+=b.offset[h]||0;if(b.over[h])g[c]+=f[i=='x'?'width':'height']()*b.over[h]}else{var o=f[h];g[c]=o.slice&&o.slice(-1)=='%'?parseFloat(o)/100*m:o}if(/^\d+$/.test(g[c]))g[c]=g[c]<=0?0:Math.min(g[c],m);if(!a&&b.queue){if(l!=g[c])t(b.onAfterFirst);delete g[c]}});t(b.onAfter);function t(a){r.animate(g,j,b.easing,a&&function(){a.call(this,n,b)})}}).end()};k.max=function(a,i){var e=i=='x'?'Width':'Height',h='scroll'+e;if(!d(a).is('html,body'))return a[h]-d(a)[e.toLowerCase()]();var c='client'+e,l=a.ownerDocument.documentElement,m=a.ownerDocument.body;return Math.max(l[h],m[h])-Math.min(l[c],m[c])};function p(a){return typeof a=='object'?a:{top:a,left:a}}})(jQuery);

/**
 * Initialisation des menus accordions (voir sources dans fichier : "accordion-support.js")
 */
function ReadyAccordion() {$('ul.accordion ul').hide();$.each($('ul.accordion'), function(){if(this.id == ""){return true;}$('#' + this.id + '.expandfirst ul:first').show();});$('ul.accordion li a').click(function() {var checkElement = $(this).next();var parent = this.parentNode.parentNode.id;if(parent == ""){return true;}if($('#' + parent).hasClass('noaccordion')) {$(this).next().slideToggle('normal');return false;}if((checkElement.is('ul')) && (checkElement.is(':visible'))) {if($('#' + parent).hasClass('collapsible')) {$('#' + parent + ' ul:visible').slideUp('normal');}return false;}if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {$('#' + parent + ' ul:visible').slideUp('normal');checkElement.slideDown('fast');return false;}});}
/**
 * Fonctions d'initialisation "FunctionPerso.js
 */
   var _gaq = _gaq || [];_gaq.push(['_setAccount', 'UA-5558221-1']);_gaq.push(['_trackPageview']);

function ReadyGoogle() {var ga = document.createElement('script');ga.type = 'text/javascript';ga.async = true;ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';var s = document.getElementsByTagName('script')[0];s.parentNode.insertBefore(ga, s);}

function ReadyToolTip(pNom,nX,nY){$(pNom).tooltip({offset: [nX, nY],effect: 'slide',delay:400}).dynamic({ bottom: { direction: 'down', bounce: true } })}

function ReadyTabs(pMenu,pDiv){$("ul." + pMenu ).tabs("div#" + pDiv + " > div", {effect: 'ajax',history: true,onClick: function(event, i) {Shadowbox.setup();ReadyGoogle();}});}

function ReadySlide(pNom,pLargDe,pLargA,nDure){$(pNom).hover(function(){$(".cover", this).stop().animate({left:pLargDe},{queue:false,duration:nDure});},function() {$(".cover", this).stop().animate({left:pLargA},{queue:false,duration:nDure});});}

function ReadyDeplaceImg(nLargImg,pVitesse,nNbElem,pNomBtn,pNomSlide,pNomSlideBox){for(var i=0;i<nNbElem;i++){$(pNomSlide+i).click(function(){var Nb=this.className.substr(this.className.length-1);$(pNomSlideBox).animate({right: ""+(Nb*nLargImg)}, pVitesse);window.location.replace(window.location.href.split('#')[0] + "#"+pNomBtn+Nb);var btn;for(var j=0;j<nNbElem;j++){btn = document.getElementById(pNomBtn+j);if(Nb==j){btn.className= "current";}else{btn.className= "";}}return false;});}	$(pNomSlideBox).animate({right: "0"}, 0);var hash = window.location.href.split('#')[1];if(typeof(hash) != "undefined"){var part1=hash.substr(0,hash.length-1);var part2=hash.substr(-1);if(part1==pNomBtn){$(pNomSlide+part2).click();}}}

function TelechargeFic(CssSelect){$(CssSelect).click(function() {var part1=$(this).attr("href");var LocArray = part1.split('/');var part2 = LocArray.pop();var Addr="";for(i=0;i<LocArray.length;i++){Addr +=LocArray[i]+"/";}Addr += "telecharge.html?Fichier="+part2;window.location = Addr;return false;});}

