//$(window).load(function(){
    //alert("window load occurred...Page layout is complete!");
//});
jQuery(function($){ // Document is ready (perform JavaScript after the document is scriptable).
					// It's a shortcut for '$(document).ready(function(){'   or   '$(function(){'
					// and also
					// argument to write failsafe jQuery code using the $ alias, without relying on the global alias
	//alert("document ready occurred!");

	/* reset css rules
	------------------------------------------------------------------------------------------------------------------------------------- */
	// :first-child is a CSS2 pseudo-class --> Select and style every element that is the first child of its parent.
    $("div p:first-child").css("margin-top", "0"); // jQuery's CSS Method to be supported by all browsers.
	// :last-child is a CSS3 pseudo-class.
	$("div p:last-child").css("margin-bottom", "0"); // Idem
	$("div ul:first-child").css("margin-top", "0"); $("div ul:last-child").css("margin-bottom", "0");
	$("div ol:first-child").css("margin-top", "0"); $("div ol:last-child").css("margin-bottom", "0");
	$("div dl:first-child").css("margin-top", "0"); $("div dl:last-child").css("margin-bottom", "0");
	$("div h1:first-child").css("margin-top", "0"); $("div h1:last-child").css("margin-bottom", "0");
	$("div h2:first-child").css("margin-top", "0"); $("div h2:last-child").css("margin-bottom", "0");
	$("div h3:first-child").css("margin-top", "0"); $("div h3:last-child").css("margin-bottom", "0");
	$("div h4:first-child").css("margin-top", "0"); $("div h4:last-child").css("margin-bottom", "0");
	$("div h5:first-child").css("margin-top", "0"); $("div h5:last-child").css("margin-bottom", "0");
	$("div h6:first-child").css("margin-top", "0"); $("div h6:last-child").css("margin-bottom", "0");
	
	$("div:first").nextAll(); //Recherche tous les éléments frères situés après l'élément sélectionné.
	$("div:last" ).prevAll(); //Recherche tous les éléments frères précédant l'élément courant.
	
	/* email protection script from http://valendesigns.com
	------------------------------------------------------------------------------------------------------------------------------------- */
	$('.protectedEmail').each(function(i){
		var protectedEmail = $(this).html(); protectedEmail = protectedEmail.replace('[at]','@').replace(/\[dot\]/g,'.'); $(this).html(protectedEmail)/*.replaceWith('<a href="mailto:'+$(this).text()+'">'+$(this).text()+'</a>') //instead of next lines*/;
		var protectedHref = $(this).attr('href'); protectedHref = protectedHref.replace('[at]','@').replace(/\[dot\]/g,'.'); $(this).attr('href', protectedHref);
	});
	
	/* Tableless script
	------------------------------------------------------------------------------------------------------------------------------------- */
	var uri = window.decodeURI ? window.decodeURI(window.location.href.toLowerCase()) : window.location.href.toLowerCase();
	//		= window.decodeURI ? window.decodeURI(document.URL.toLowerCase()) : document.URL.toLowerCase();
	if (uri.indexOf('http://') == 0) $('#tableless').attr('href','http://w3tableless.com/?uri=' + uri);
	
	/* Logo animation from www.designkindle.com
	Another animation (css3 sprites rotation without jQuery) from http://inspectelement.com/demos/common.css view a.logo:hover
	------------------------------------------------------------------------------------------------------------------------------------- */
	$('#logo').removeAttr("href").hover(
		function(){$(this).stop().animate({marginTop:'3px'}, 150);}
		,
		function(){$(this).stop().animate({marginTop:'-3px'}, 85).animate({marginTop:'0px'}, 150);}
	);
	
	/* LocalScroll
	------------------------------------------------------------------------------------------------------------------------------------- */
	$(".scroll").click(function(event){
		//prevent the default action for the click event
		event.preventDefault();
				
		//get the full url - like mysitecom/index.htm#home
		var full_url = this.href;
				
		//split the url by # and get the anchor target name - home in mysitecom/index.htm#home
		var parts = full_url.split("#");
		var trgt = parts[1];
				
		//get the top offset of the target anchor
		var target_offset = $("#"+trgt).offset();
		var target_top = target_offset.top;
				
		//goto that anchor by setting the body scroll top to anchor top
		$('html, body').animate({scrollTop:target_top}, 500);
	});
	
	/* jQuery 1.3.2 Scroll to Top 3.0, 29/10/2009 by Craig Wilson - Adds an unobtrusive "Scroll to Top" link to your page with smooth scrolling.
	** Copyright (c) 2009 by Craig Wilson Ph.Creative Ltd - Ph.Creative blog.ph-creative.com/post/jQuery-Plugin-Scroll-to-Top-v3.aspx - Under the MIT License
	------------------------------------------------------------------------------------------------------------------------------------- */
	//if($(this).scrollTop()!="0") $("#return-top").fadeIn("slow");
	$("#return-top").hide().removeAttr("href");
    //if ($(window).scrollTop()!="0") $("#return-top").fadeIn("slow");
    $(window).scroll(function(){
        if ($(window).scrollTop()=="0") 
             $("#return-top").fadeOut("slow");
        else $("#return-top").fadeIn("slow");
    });
    $("#return-top").click(function(){ $("html, body").animate({ scrollTop: 0 }, "slow"); });

	//if($(this).scrollTop()!="0") $(".return-top").fadeIn("slow");
	$(".return-top").hide().removeAttr("href");
	//if ($(window).scrollTop()!="0") $(".return-top").fadeIn("slow");
	$(window).scroll(function(){
		if ($(window).scrollTop()=="0")
			 $(".return-top").fadeOut("slow");
		else $(".return-top").fadeIn("slow");
	});
	$(".return-top").click(function(){ $("html, body").animate({ scrollTop: 0 }, "slow"); });
	
	/* jQuery Browsers Sliding Panel
	------------------------------------------------------------------------------------------------------------------------------------- */
	var panel = $('#compatibility #browsers'), timeout;
	$('#compatibility').hover( 
		function(){ // Setting a custom 'open' event on the sliding panel:			
			clearTimeout(timeout);
			timeout = setTimeout(function(){panel.trigger('open');},500);
		},
		function(){ // Custom 'close' event:			
			clearTimeout(timeout);
			timeout = setTimeout(function(){panel.trigger('close');},500);
		}
	);	
	var loaded=false; // A flag which prevents multiple ajax calls to browsers.asp;
	panel
		.bind('open',function(){ // Binding functions to custom events:	
			panel.slideDown(function(){
				if(!loaded){ // Loading the countries and the flags once the sliding panel is shown:
					//panel.load('browsers.asp');
					loaded=true;
				}
			});
		})
		.bind('close',function(){
			panel.slideUp();
		});
	
	/* jQuery Directories Sliding Panel
	------------------------------------------------------------------------------------------------------------------------------------- */
	var panel2 = $('#searchDir #directories')/*, timeout*/;
	$('#searchDir').hover( 
		function(){ // Setting a custom 'open' event on the sliding panel2:			
			clearTimeout(timeout);
			timeout = setTimeout(function(){panel2.trigger('open');},500);
		},
		function(){ // Custom 'close' event:			
			clearTimeout(timeout);
			timeout = setTimeout(function(){panel2.trigger('close');},500);
		}
	);
	/*var */loaded=false; // A flag which prevents multiple ajax calls to directories.asp;
	panel2
		.bind('open',function(){ // Binding functions to custom events:	
			panel2.slideDown(function(){
				if(!loaded){ // Loading the countries and the flags once the sliding panel2 is shown:
					//panel2.load('directories.asp');
					loaded=true;
				}
			});
		})
		.bind('close',function(){
			panel2.slideUp();
		});	
	
	/* 
	------------------------------------------------------------------------------------------------------------------------------------- */
	if (document.all){ //alert ("Case document.all");
		//alert ("screen.availWidth= "+screen.availWidth+" | screen.availHeight= "+screen.availHeight);
		//alert ("window.Width= "+window.document.body.clientWidth+" | window.Height= "+window.document.body.clientHeight);
	}else if (document.getElementById || document.layers){ //alert ("Case document.getElementById or document.layers");
		//alert ("screen.availWidth= "+screen.availWidth+" | screen.availHeight= "+screen.availHeight);
		////alert ("window.Width= "+window.innerWidth+" | window.Height= "+window.innerHeight);
		//alert ("window.Width= "+window.document.body.clientWidth+" | window.Height= "+window.document.body.clientHeight);
	}
	// screen.availHeight <> de screen.height quand des éléments d'écran fixes comme des barres de tâches visibles etc. occupent une partie de l'écran en haut ou en bas. 
	// Tandis que height retournera par exemple 768, availHeight ne retournera que 712, parce qu'une barre de tâches occupe 56 pixels de haut.
	
	// Screen Width	 800	1024	1440
	// MSIE   Width	 984	1004	1419
	// Others Width	 784	1008	1423
	
	// Screen Height 570	xxx		xxx	
	
	if (((document.getElementById || document.layers) && (screen.availWidth < 1024 || window.document.body.clientWidth < 984))||((document.all) && (screen.availWidth < 1024 || window.document.body.clientWidth < 984))){
		//alert("mode 800");
		$("div#headerMask").css("position", "static");
		$("div#headerMask").css("height", "0px");
		$("div#header").css("position", "static");
		$("div#header").css("height", "170px");
		$("div#header .top").css("height", "15px");
		$(".div-block").css("padding-top", "15px").css("padding-bottom", "40px");
	}else{
		//alert("mode > 1024");
		if ($.browser.msie && ($.browser.version.substr(0,2)=="6." || $.browser.version.substr(0,2)=="5.")){
			//alert("IE6 or less");
			if (document.all && screen.availHeight <= 738){
				/* $("div#headerMask").css("height", "0px"); Resolved with conditional comments */
				$("div#header").css("height", "180px");
				$("div#header .top").css("height", "20px");
				$(".div-block").css("padding-top", "0").css("padding-bottom", "40px");				
			}else{
				/* $("div#headerMask").css("height", "0px"); Resolved with conditional comments */
				$("div#header").css("height", "190px");
				$("div#header .top").css("height", "25px");
				$(".div-block").css("padding-top", "0").css("padding-bottom", "40px");				
			}
		}else{
			if (((document.getElementById || document.layers) && (window.document.body.clientHeight < 630))||((document.all) && (window.document.body.clientHeight < 630))){
				//alert('630');
				$("div#headerMask").css("height", "180px");
				$("div#header").css("height", "180px");
				$("div#header .top").css("height", "20px");
				$(".div-block").css("padding-top", "180px").css("padding-bottom", "30px");				
			}else if (((document.getElementById || document.layers) && (window.document.body.clientHeight < 680))||((document.all) && (window.document.body.clientHeight < 730))){
				//alert('680');
				$("div#headerMask").css("height", "200px");
				$("div#header").css("height", "200px");
				$("div#header .top").css("height", "30px");
				$(".div-block").css("padding-top", "210px").css("padding-bottom", "40px");				
			}else if (((document.getElementById || document.layers) && (window.document.body.clientHeight < 730))||((document.all) && (window.document.body.clientHeight < 830))){
				//alert('730');
				$("div#headerMask").css("height", "210px");
				$("div#header").css("height", "210px");
				$("div#header .top").css("height", "35px");
				$(".div-block").css("padding-top", "220px").css("padding-bottom", "40px");				
			}else if (((document.getElementById || document.layers) && (window.document.body.clientHeight < 780))||((document.all) && (window.document.body.clientHeight < 930))){
				//alert('780');
				$("div#headerMask").css("height", "220px");
				$("div#header").css("height", "220px");
				$("div#header .top").css("height", "40px");
				$(".div-block").css("padding-top", "230px").css("padding-bottom", "40px");				
			}else{
				//alert('extra');
				$("div#headerMask").css("height", "230px");
				$("div#header").css("height", "230px");
				$("div#header .top").css("height", "45px");
				$(".div-block").css("padding-top", "240px").css("padding-bottom", "40px");				
			}
		}
	};
	
	/* Timer Script
	------------------------------------------------------------------------------------------------------------------------------------- */
	var HourNow=(new Date()).getHours();var MinNow=(new Date()).getMinutes();var SecNow=(new Date()).getSeconds();var MillNow=(new Date()).getMilliseconds();
	var DiffNow = "";var TotalNow = 0;var LastTotal = 0;var Diff = 0;var UniteMesure = "sec";
	TotalNow += HourNow*60*60*1000 + MinNow*60*1000 + SecNow*1000 + MillNow;
	LastTotal += LastHour*60*60*1000 + LastMin*60*1000 + LastSec*1000 + LastMill;
	Diff = TotalNow - LastTotal;if (Diff < 1000)DiffNow+="0,";
	if (Math.floor(Diff/(3600*1000))>0){
		DiffNow+=Math.floor(Diff/(3600*1000))+":";UniteMesure="H";
		Diff +=-(Math.floor(Diff/(3600*1000))*3600*1000); }
	if ((Math.floor(Diff/(60*1000))>0) || (UniteMesure=="H")){
		if ((Math.floor(Diff/(60*1000)) < 10) && (UniteMesure=="H")) DiffNow+="0";
		DiffNow+=Math.floor(Diff/(60*1000))+":";if (UniteMesure!="H") UniteMesure="min";
		Diff +=-(Math.floor(Diff/(60*1000))*60*1000); }
	if ((Math.floor(Diff/1000)>0) || (UniteMesure=="H") || (UniteMesure=="min")){
		if ((Math.floor(Diff/1000) < 10) && (UniteMesure!="sec")) DiffNow+="0";
		DiffNow+=Math.floor(Diff/1000)+",";//UniteMesure="Sec"; Par defaut c juste
		Diff +=-(Math.floor(Diff/1000)*1000); }
	DiffNow+=Diff+"&#8217;&#8217;&#8217;&nbsp;"+UniteMesure+"&nbsp;";

	var strTimer = '';
	strTimer += (typeof serverTimer != 'undefined')?(
													 (contentLanguage == "Fr" ? 'Temps d&rsquo;ex&eacute;cution de la page: ' : 'Page Executing Time: ') + serverTimer + '&#8217;&#8217;&#8217; sec :: '
													):'';
	strTimer += (contentLanguage == "Fr" ? 'Temps de chargement: ' : 'Loading Time: ') + DiffNow;
	
	$('#timer').html(strTimer); // Instead of the following bloc
	/*var nava = (document.layers);var dom = (document.getElementById);var iex = (document.all);
	if (nava) afficheDiv = document.affiche;
	else if (dom) afficheDiv = document.getElementById("affiche");
	else if (iex) afficheDiv = affiche;
	if(nava)afficheDiv.write (strTimer); else {if(dom) afficheDiv.innerHTML = strTimer;else if(iex)afficheDiv.innerHTML = strTimer;}*/
	
	/* jQuery 1.3.2 Fancy Menu. (Demo)http://www.sohtanaka.com/web-design/examples/fancy-navigation/
	** 							(Tut)http://www.sohtanaka.com/web-design/animate-navigation-with-css-jquery/
	**					   (More Tut)http://www.sohtanaka.com/web-design-tutorials/
	------------------------------------------------------------------------------------------------------------------------------------- */
	$("#fancyNav li").not('.divider').prepend("<span></span>"); //Throws an empty span tag right before the a tag
	$("#fancyNav li").not('.divider').each(function(){ //For each list item...
		var linkText = $(this).find("a").html(); //Find the text inside of the a tag
		$(this).find("span").show().html(linkText); //Add the text in the span tag
	});
	$("#fancyNav li").not('.divider').hover(
		function(){ //On hover...
			$(this).find("span").stop().animate({
				marginTop: "-40" //Find the span tag and move it up 40 pixels
			}, 250);
		}
		, 
		function(){ //On hover out...
			$(this).find("span").stop().animate({
				marginTop: "0" //Move the span back to its original state (0px)
			}, 250);
		}
	);
});

/* jQuery 1.2.3 Cycle Lite 1.0, 06/08/2008 (malsup.com/jquery/cycle/lite/) which supports only the fade transition (fewer options)
** Copyright (c) 2008 M. Alsup - Dual licensed under the MIT and GPL licenses
----------------------------------------------------------------------------------------------------------------------------------------- */
;(function(D){var A="Lite-1.0";D.fn.cycle=function(E){return this.each(function(){E=E||{};if(this.cycleTimeout){clearTimeout(this.cycleTimeout)}this.cycleTimeout=0;this.cyclePause=0;var I=D(this);var J=E.slideExpr?D(E.slideExpr,this):I.children();var G=J.get();if(G.length<2){if(window.console&&window.console.log){window.console.log("terminating; too few slides: "+G.length)}return }var H=D.extend({},D.fn.cycle.defaults,E||{},D.metadata?I.metadata():D.meta?I.data():{});H.before=H.before?[H.before]:[];H.after=H.after?[H.after]:[];H.after.unshift(function(){H.busy=0});var F=this.className;H.width=parseInt((F.match(/w:(\d+)/)||[])[1])||H.width;H.height=parseInt((F.match(/h:(\d+)/)||[])[1])||H.height;H.timeout=parseInt((F.match(/t:(\d+)/)||[])[1])||H.timeout;if(I.css("position")=="static"){I.css("position","relative")}if(H.width){I.width(H.width)}if(H.height&&H.height!="auto"){I.height(H.height)}var K=0;J.css({position:"absolute",top:0,left:0}).hide().each(function(M){D(this).css("z-index",G.length-M)});D(G[K]).css("opacity",1).show();if(D.browser.msie){G[K].style.removeAttribute("filter")}if(H.fit&&H.width){J.width(H.width)}if(H.fit&&H.height&&H.height!="auto"){J.height(H.height)}if(H.pause){I.hover(function(){this.cyclePause=1},function(){this.cyclePause=0})}D.fn.cycle.transitions.fade(I,J,H);J.each(function(){var M=D(this);this.cycleH=(H.fit&&H.height)?H.height:M.height();this.cycleW=(H.fit&&H.width)?H.width:M.width()});J.not(":eq("+K+")").css({opacity:0});if(H.cssFirst){D(J[K]).css(H.cssFirst)}if(H.timeout){if(H.speed.constructor==String){H.speed={slow:600,fast:200}[H.speed]||400}if(!H.sync){H.speed=H.speed/2}while((H.timeout-H.speed)<250){H.timeout+=H.speed}}H.speedIn=H.speed;H.speedOut=H.speed;H.slideCount=G.length;H.currSlide=K;H.nextSlide=1;var L=J[K];if(H.before.length){H.before[0].apply(L,[L,L,H,true])}if(H.after.length>1){H.after[1].apply(L,[L,L,H,true])}if(H.click&&!H.next){H.next=H.click}if(H.next){D(H.next).bind("click",function(){return C(G,H,H.rev?-1:1)})}if(H.prev){D(H.prev).bind("click",function(){return C(G,H,H.rev?1:-1)})}if(H.timeout){this.cycleTimeout=setTimeout(function(){B(G,H,0,!H.rev)},H.timeout+(H.delay||0))}})};function B(J,E,I,K){if(E.busy){return }var H=J[0].parentNode,M=J[E.currSlide],L=J[E.nextSlide];if(H.cycleTimeout===0&&!I){return }if(I||!H.cyclePause){if(E.before.length){D.each(E.before,function(N,O){O.apply(L,[M,L,E,K])})}var F=function(){if(D.browser.msie){this.style.removeAttribute("filter")}D.each(E.after,function(N,O){O.apply(L,[M,L,E,K])})};if(E.nextSlide!=E.currSlide){E.busy=1;D.fn.cycle.custom(M,L,E,F)}var G=(E.nextSlide+1)==J.length;E.nextSlide=G?0:E.nextSlide+1;E.currSlide=G?J.length-1:E.nextSlide-1}if(E.timeout){H.cycleTimeout=setTimeout(function(){B(J,E,0,!E.rev)},E.timeout)}}function C(E,F,I){var H=E[0].parentNode,G=H.cycleTimeout;if(G){clearTimeout(G);H.cycleTimeout=0}F.nextSlide=F.currSlide+I;if(F.nextSlide<0){F.nextSlide=E.length-1}else{if(F.nextSlide>=E.length){F.nextSlide=0}}B(E,F,1,I>=0);return false}D.fn.cycle.custom=function(K,H,I,E){var J=D(K),G=D(H);G.css({opacity:0});var F=function(){G.animate({opacity:1},I.speedIn,I.easeIn,E)};J.animate({opacity:0},I.speedOut,I.easeOut,function(){J.css({display:"none"});if(!I.sync){F()}});if(I.sync){F()}};D.fn.cycle.transitions={fade:function(F,G,E){G.not(":eq(0)").css("opacity",0);E.before.push(function(){D(this).show()})}};D.fn.cycle.ver=function(){return A};D.fn.cycle.defaults={timeout:4000,speed:1000,next:null,prev:null,before:null,after:null,height:"auto",sync:1,fit:0,pause:0,delay:0,slideExpr:null}})(jQuery);
jQuery(function($){ // Document is ready
    $('.slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
});

/* Advanced jQuery Contact Plugin
----------------------------------------------------------------------------------------------------------------------------------------- */
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('4G(F($){1l.1x.1w(\'/\').3s();F 3A(2S){7 2J=1a.1l.2Y.35(1);7 1Q=2J.1w("&");2G(7 i=0;i<1Q.3r;i++){7 1M=1Q[i].1w("=");8(1M[0]==2S)k 1M[1]}k(j)}7 1y=1B;7 16=1a.2C?1a.2C(1a.1l.1x.2A()):1a.1l.1x.2A();8(16.19(\'2z://\')==0){16=16.2x("2z://","");7 2v=16.1w("/");7 14=2v[0];8(14!=\'4s.0.0.1\'&&14.19(\'4v\')!=6&&14.19(\'4x\')!=6&&14.19(\'2V\')!=6&&14.19(\'2W.2X\')!=6){1S(\'34 1X 3g 5 2u 3u 2q 3U 42. 4c 4h 4i!\');1y=j}};8(1y){7 a=1r.2k(1r.2i()*10);7 b=1r.2k(1r.2i()*10);7 c=a+b;$(\'.x\').33(\'<I 12="N" 3m="6" G="x" 1Y="x" U="A 3y &E;3G \'+a+\' + \'+b+\' ? " 3O="x N 3T T" />\');8($(\'I[12="N"], 1n\').1k(\':1X(.T)\'))$(\'I[12="N"], 1n\').W(\'T\');$(\'I[12="N"]\').1K(\'4j\',\'4r\');$(\'I[12="N"], 1n\').B(F(){8($(5).1k(\'.T\'))$(5).11(\'T\');8($(5).1k(\'.1j\'))$(5).11(\'1j\');$(5).W(\'1u\');8(5.U==5.H){5.U=\'\'}8(5.U!=5.H){5.2h()}$(5).L("Y",1B)}).2Z(F(){8($(5).1k(\'.1u\'))$(5).11(\'1u\').W(\'T\');8($.31(5.U)==\'\'){5.U=(5.H?5.H:\'\')}$(5).L("Y",j)}).32(F(){8(2e $(5).L("Y")!=2d&&!$(5).L("Y")){$(5).W("1j")}},F(){8(2e $(5).L("Y")!=2d&&!$(5).L("Y")){$(5).11("1j")}});$(\'#1W\').36(F(){$(\'1W\').38(\'39\').3b(F(i){7 1Y=$(5).1K(\'2G\');7 3f=$(\'#\'+1Y)});7 C=$(\'I[G="C"]\');7 D=$(\'I[G="D"]\');7 q=$(\'I[G="q"]\');7 h=$(\'I[G="h"]\');7 f=$(\'1n[G="f"]\');7 x=$(\'I[G="x"]\');F z(o,n){$(\'.1o\').2b();$(\'.1o\').V(n);o.11(\'1u\').W(\'29\')};F Q(o){$(\'.1o\').V(\'\');$(\'.1o\').28();o.11(\'29\').W(\'T\')};7 1m=/(.)\\1{2,}/;7 25=/([^w])\\1{2,}/i;7 1i=/(2u)|(&24;)|(&22;)|(&21;24;)|(&21;22;)|(%3c)|(%3e)|(2h) |(4y) |(4z) |(4A)|(4B) |(2T)|(2U)/i;8(C.e()==5.C.H||C.e().p(1m)||C.e().p(1i)){z(C,(m=="v"?\'J 1s n\\\'1A 1c 1C 1D.\':\'K 20 G 1G\\\'t 1H 1I 1J.\'));5.C.B();k j}s{8(!C.e().p(/^.{3,26}$/)){z(C,(m=="v"?\'J 1s 17 &S;15 M 3 &R; 26 1b&Z;1d.\':\'K 20 G P 1e 1f 3 1t 26 1g.\'));5.C.B();k j}s Q(C)};8(D.e()==5.D.H||D.e().p(1m)||D.e().p(1i)){z(D,(m=="v"?\'J 2g&E;1s n\\\'1A 1c 1C 1D.\':\'K 4t G 1G\\\'t 1H 1I 1J.\'));5.D.B();k j}s{8(!D.e().p(/^.{3,26}$/)){z(D,(m=="v"?\'J 2g&E;1s 17 &S;15 M 3 &R; 26 1b&Z;1d.\':\'4u G P 1e 1f 3 1t 26 1g.\'));5.D.B();k j}s Q(D)};8(q.e()==5.q.H){z(q,(m=="v"?\'1h 1F 1V 1E 1T&E;23 M t&E;l&E;X 27.\':\'1q P 1L a 2a X 1U.\'));5.q.B();k j}s{7 2c=/^((\\(\\d{2,3}\\)( |-)?)|(\\+( )?))?[0-9][0-9 -]*$/;7 2f=/(- )|( -)|-{2,}|( ){2,}/;7 1Z=/-$/;8(!q.e().p(2c)||q.e().p(2f)||q.e().p(1Z)){7 1p=\'<O 13="2j">J 1T&E;23 M t&E;l&E;X 17 &S;15 37&E; M 1z 0 &R; 9, 2l 3a 2m 1E 3d 2n \\\'+\\\' 2o 2m 2 &R; 3 1z 3h 3i 3j&Z;3k \\\'()\\\', 2l 3l 2p 3n \\\' \\\' 2o 2p 3o \\\'-\\\' &R; l\\\'3p&E;3q.</O>\';7 1v=\'<O 13="2j">K X 1U 2r 3t 2s 2t 0-9, 3v 3w 3x 1P + 3z 1O 1P 2- 1O 3-3B 3C 1f 3D 3E 3F (), 2r 2w 3H 1O 3I - 3J.</O>\';z(q,(m=="v"?1p:1v));5.q.B();k j}s{8(!q.e().p(/^.{6,26}$/)){z(q,(m=="v"?\'J 1T. M t&E;l&E;X 17 &S;15 M 6 &R; 26 1z y 3K 3L 1b&Z;1d 3M\':\'K X 1U P 1e 1f 6 1t 26 2t 3N 1P 1g.\'));5.q.B();k j}s Q(q)}};7 1N=/^[\\w.-]+@[\\w.-]+\\.\\w{2,4}$/;F 3P(h){k(1N.3Q(h)!=3R)};8(h.e()==5.h.H||h.e().p(1m)||h.e().p(1i)||!h.e().p(1N)){z(h,(m=="v"?\'1h 1F 1V 3S 2y h 27.\':\'1q P 1L a 2a h.\'));5.h.B();k j}s{8(!h.e().p(/^.{10,30}$/)){z(h,(m=="v"?\'J 2y h 17 &S;15 M 10 &R; 30 1b&Z;1d.\':\'K h P 1e 1f 10 1t 30 1g.\'));5.h.B();k j}s Q(h)};8(f.e()==5.f.H){z(f,(m=="v"?\'1h 3V 3W 1c 3X 1E f 3Y.\':\'1q 3Z\\\'t 40 a 41 f.\'));5.f.B();k j}s{8(f.e().p(25)||f.e().p(1i)){z(f,(m=="v"?\'J f n\\\'1A 1c 1C 1D.\':\'K f 1G\\\'t 1H 1I 1J.\'));5.f.B();k j}s{8(!f.e().p(/^(.|\\n|\\r){10,}$/)){z(f,(m=="v"?\'J f 17 &S;15 M 10 1b&Z;1d 43 45.\':\'K f P 1e 46 47 10 1g.\'));5.f.B();k j}s Q(f)}};8(x.e()==5.x.H){z(x,(m=="v"?\'1h 1F 1V 48 r&E;49 \'+a+\' + \'+b+\'.\':\'1q P 1L 4a 4b 2s \'+a+\' + \'+b+\'.\'));5.x.B();k j}s{8(!(x.e().p(/^\\d+$/)&&x.e()==c)){7 1p=\'<O 13="2B">1h n\\\'&S;4d 1c 4e !</O>\';7 1v=\'<O 13="2B">K 4f 1X x!</O>\';z(x,(m=="v"?1p:1v));5.x.B();k j}s Q(x)};7 L=\'m=\'+m+\'&C=\'+C.e()+\'&D=\'+D.e()+\'&q=\'+q.e()+\'&h=\'+h.e()+\'&f=\'+4g(f.e().2x(/\\r?\\n/g,\'<18 />\'));$(\'.N\').1K(\'2D\',\'1B\');$(\'.2E\').2b();$.4k({16:"4l.4m",12:"4n",L:L,4o:j,4p:F(V){8(V==1){$(\'.1W\').4q(\'2F\');8(m=="v")$(\'.1R\').V(\'<2H 2I="44" 2K="" 2L="2M/2N.2O" 2P="44" 13="2Q" /><b>2R!</b><18 /><18 />4C 4D 4E&4F;u 4w f.\');s $(\'.1R\').V(\'<2H 2I="44" 2K="" 2L="2M/2N.2O" 2P="44" 13="2Q" /><b>4H 4I !</b><18 /><18 />4J 2w 4K 2q f.\');$(\'.1R\').4L(\'2F\')}s{$(\'.N\').4M(\'2D\');$(\'.2E\').28();8(m=="v")1S(\'4N 4O. 2R d\\\'4P 2n 4Q.\');s 1S(\'4R, 4S 4T. 4U 4V 4W 4X.\')}}});k j})}});',62,308,'|||||this||var|if||||||val|message||email||false|return||contentLanguage|||match|tel||else|||Fr||human||selectBox||focus|firstName|lastName|eacute|function|name|defaultValue|input|Votre|Your|data|de|text|div|must|deselectBox|agrave|ecirc|blured|value|html|addClass|phone|hasFocus|egrave||removeClass|type|align|serverName|tre|url|doit|br|indexOf|window|caract|pas|res|be|between|characters|Vous|regMalicious|hovered|is|location|regfake|textarea|caution|cautionFr|You|Math|nom|and|focused|cautionEN|split|href|continueBl|chiffres|est|true|rempli|correctement|un|devez|isn|filled|out|correctly|attr|provide|pair|regMail|or|optional|vars|done|alert|num|number|fournir|form|not|id|regTel3|first|amp|gt|ro|lt|regfakeMessage||valide|hide|warning|valid|show|regTel1|undefined|typeof|regTel2|pr|select|random|justify|ceil|peut|par|plus|ou|des|your|may|of|digits|script|urlExplode|have|replace|adresse|http|toLowerCase|right|decodeURI|disabled|loading|slow|for|img|height|query|alt|src|images|info44x44|png|width|left|Merci|variable|revoke|union|lygo|he|goo|search|blur||trim|hover|append|Do|substring|submit|compos|find|label|commencer|each||signe||JQid|include|en|double|parenth|se|contenir|tabindex|espaces|tirets|int|rieur|length|pop|consist|in|begin|with|an|quoi|character|getQueryVariable|digit|prefix|two|round|brackets|gal|spaces|hyphens|inside|compris|les|optionnels|including|class|is_email|exec|null|une|highlight|own|ne|pouvez|envoyer|vide|can|send|blank|uses|au||moins|at|least|le|sultat|the|result|TAKE|tes|humain|are|encodeURIComponent|IT|OUT|autocomplete|ajax|process|asp|GET|cache|success|fadeOut|off|127|last|Last|bous|votre|busin|update|insert|delete|grant|Nous|avons|re|ccedil|jQuery|Thank|you|We|received|fadeIn|removeAttr|Erreur|inattendue|essayer|tard|Sorry|unexpected|error|Please|try|again|later'.split('|'),0,{}))

/* Equal Heights Plugin Version 1.0 Updated 12/109/2008
** Copyright (c) 2008 Rob Glazebrook (cssnewbie.com)
----------------------------------------------------------------------------------------------------------------------------------------- */
eval(function(p,a,c,k,e,r){e=function(c){return c.toString(a)};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('(4($){$.7.8=4(5,2){1=(5)?5:0;3.9(4(){a($(3).6()>1){1=$(3).6()}});a((2)&&1>2)1=2;b 1};$.7.c=4(5,2){1=$(3).8(5,2);b 3.9(4(){$(3).6(1)})}})(d);',14,14,'|tallest|maxHeight|this|function|minHeight|height|fn|highest|each|if|return|equalHeights|jQuery'.split('|'),0,{}))

/* jQuery QuickFlip v2.1.1, http://jonraasch.com/blog/quickflip-2-jquery-plugin
** Copyright (c) 2009 Jon Raasch (http://jonraasch.com/), licensed under the FreeBSD License
----------------------------------------------------------------------------------------------------------------------------------------- */
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('(5($){6 q=1A,l=1O;$.4={b:[],m:[],r:[],1u:5(3,a){6 3=3||{};3.1a=3.1a||1H;3.19=3.19||1T;3.10=3.10||\'.1G\';3.14=3.14||q;3.U=3.U||\'1I\';3.18=3.18||q;3.e=3.e||q;6 $a=L(a)!=\'O\'?$(a):$(\'.4\'),$K=$a.u();8($a.9(\'M\')==\'1U\')$a.9(\'M\',\'1Z\');6 i=$.4.b.d;$K.V(5(j){6 $7=$(7);8(3.10){$7.1L(3.10).1N(5(1t){1t.1R();$.4.w(i)})}8(j)$7.N()});$.4.m.1l(3);$.4.r.1l({$a:$($a),$K:$($K)});$.4.T(i);8(!3.18){$(1B).1D(5(){v(6 i=0;i<$.4.b.d;i++){$.4.1i(i);$.4.T(i)}})}},T:5(i,A){$.4.m[i].B=$.4.m[i].B||$.4.r[i].$a.E();$.4.m[i].H=$.4.m[i].H||$.4.r[i].$a.I();6 3=$.4.m[i],n={1g:$.4.r[i].$a,1V:i,h:1z((3.e?3.H:3.B)/2),o:[],c:[],C:[],A:A||0,3:3};$.4.r[i].$K.V(5(j){6 $1o=$(7).9({M:\'1q\',P:0,Q:0,1r:0,1w:0,E:3.B,I:3.H});n.o[j]=$1o;6 $c=1x(n,j).N().17(n.1g);n.c[j]=$c;n.C[j]=$c.u()});$.4.b[i]=n;5 1x(x,y){5 16(x,y){6 $Y=$(\'<Z></Z>\'),$15=x.o[y].1C().W();$Y.9(12);$Y.1k($15);f $Y}6 $p=$(\'<Z></Z>\'),15=x.o[y].1k(),12={E:3.e?3.B:x.h,I:3.e?x.h:3.H,M:\'1q\',1J:\'1K\',1r:0,1w:0};8(3.e)12.Q=0;X 12.P=0;6 $G=$(16(x,y)).17($p),$F=$(16(x,y)).17($p);8(3.e){$G.9(\'1y\',x.h);$F.9(\'P\',x.h);$G.u().9({S:\'R\'});$F.u().9({P:l,1y:0,S:\'R\'})}X{$G.9(\'1v\',x.h);$F.9(\'Q\',x.h);$G.u().9({S:\'R\'});$F.u().9({1v:0,Q:\'1W\',S:\'R\'})}f $p}},w:5(i,t,g,3){5 1p(J,z){J=J||{};z=z||{};v(1h 1E J){z[1h]=J[1h]}f z}8(L i!=\'1F\'||L $.4.b[i]==\'O\')f;6 x=$.4.b[i],j=x.A,k=(L(t)!=\'O\'&&t!=l)?t:(x.o.d>j+1)?j+1:0;x.A=k,g=(L(g)!=\'O\'&&g!=l)?g:1;3=1p(3,$.4.m[i]);x.o[j].N();8(3.14){$.4.1i(i);$.4.T(i,k);x=$.4.b[i]}x.c[j].W();6 1j=0,13=0,1f=3.e?{I:0}:{E:0},1m=3.e?{I:x.h}:{E:x.h};x.C[j].1n(1f,3.1a,3.U,5(){8(!1j){1j++}X{x.c[k].W();x.C[k].9(1f);x.C[k].1n(1m,3.19,3.U,5(){8(!13){13++}X{x.c[k].N();x.o[k].W();1M(g){1e 0:1e-1:$.4.w(i,l,-1);1d;1e 1:1d;1P:$.4.w(i,l,g-1);1d}}})}})},1i:5(i){v(6 j=0;j<$.4.b[i].c.d;j++)$.4.b[i].c[j].1Q()}};$.1c.4=5(3){7.V(5(){1S $.4.1u(3,7)});f 7};$.1c.1b=5(){5 1s(s,D){8(!s||!D||!s.d||!D.d||s.d!=D.d)f q;v(6 i=0;i<s.d;i++){8(s[i]!==D[i])f q}f 1X}6 p=l;v(6 i=0;i<$.4.b.d;i++){8(1s(7,$($.4.b[i].1g)))p=i}f p};$.1c.1Y=5(3,t,g){7.V(5(){6 $7=$(7),11=$7.1b();8(11==l){$7.4(3);11=$7.1b()}$.4.w(11,t,g,3)})}})(20);',62,125,'|||options|quickFlip|function|var|this|if|css|box|wrappers|flipDivs|length|vertical|return|repeater|half||||NULL|opts|thisFlip|panels|out|FALSE|objs|obj1|nextPanel|children|for|flip|||opts2|currPanel|panelWidth|flipDivCols|obj2|width|col2|col1|panelHeight|height|opts1|kids|typeof|position|hide|undefined|top|left|block|display|build|easing|each|show|else|col|div|ctaSelector|thisIndex|flipCss|panelFlipCount2|refresh|inner|buildFlipCol|appendTo|noResize|openSpeed|closeSpeed|whichQuickFlip|fn|break|case|closeCss|wrapper|opt|removeFlipDivs|panelFlipCount1|html|push|openCss|animate|thisPanel|combineOpts|absolute|margin|compare|ev|init|right|padding|buildFlip|bottom|parseInt|false|window|clone|resize|in|number|quickFlipCta|180|swing|overflow|hidden|find|switch|click|null|default|remove|preventDefault|new|120|static|index|auto|true|quickFlipper|relative|jQuery'.split('|'),0,{}))

/* Advanced Tabbed Box with CSS and jQuery
----------------------------------------------------------------------------------------------------------------------------------------- */
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('(F($){$.3K.3f=F(1f){p 4={o:1u,l:1u};$.S(4,1f||{});p 1o=-1,1e,1x=13;5(1x.36(\'T\').1r(/^\\d+$/)){1e=1x.36(\'T\')-1;5(1x.w(\'.\'+4.o).I>0){5(1x.w(\'.\'+4.o).7(\'.\'+4.l).I>0){5(1e>=0&&1e<1x.w(\'.\'+4.o).7(\'.\'+4.l).7(\'z\').I){1o=$(\'.\'+4.o+\' .\'+4.l+\' z a\').D(1x.w(\'.\'+4.o).7(\'.\'+4.l).7(\'z:3e-2F\').7(\'a\'))+1e}v G(\'1t \\\'T\\\' 38 1t 53 4o O 4a 1 1q \'+1x.w(\'.\'+4.o).7(\'.\'+4.l).7(\'z\').I)}v G(\'1t l \\\'\'+4.l+\'\\\' 1O 1w 1P!\')}v G(\'1t o \\\'\'+4.o+\'\\\' 1O 1w 1P!\')}v G(\'1t \\\'T\\\' 38 49 48 45 43 0-9\');2n 1o};$.3K.1T=F(1f){p 1s=13;p 1c=1s.H().H().H();5(x 1c.e(\'1f\')==\'C\'||1c.e(\'1f\')==C||!1c.e(\'1f\'))1c.e(\'1f\',1f);p 4={42:{},1j:j,18:n,1H:n,1l:n,Y:n,1g:1u,1d:1u,1Q:\'\',3W:n,19:n,2a:n,o:\'g-1A\',L:\'g-2u\',t:\'g-3v\',l:\'34\',35:\'44\',1a:n,3s:n,W:\'3k\',1W:\'3g\',21:\'37\',27:1u,2c:1u,1K:1u,10:j};$.S(4,1c.e(\'1f\')||{});5(x 4.1j!=\'P\'){$.S(4,{1j:j});G(\'1j V O P.\')}5(x 4.18!=\'P\'){$.S(4,{18:n});G(\'18 V O P.\')}5(x 4.1H!=\'P\'){$.S(4,{1H:n});G(\'1H V O P.\')}5(x 4.1l!=\'P\'){$.S(4,{1l:n});G(\'1l V O P.\')}5(x 4.Y!=\'P\'){$.S(4,{Y:n});G(\'Y V O P.\')}5(!4.1Q.1r(/^(()|(4b)|(4c)|(4d)|(4e)|(4f)|(4g)|(4h)|(4j)|(4k)|(4m)|(4n)|(4p)|(4x)|(4G)|(4R)|(4Z)|(57)|(58)|(5c)|(5d)|(5h)|(3M)|(3N)|(3O)|(3P)|(3Q)|(3R)|(3S)|(3T)|(3V))$/i)){$.S(4,{1Q:\'\'});G(\'1Q V O 3X 40 41.3l.1.3\')}5(x 4.19!=\'P\'){$.S(4,{19:n});G(\'19 V O P.\')}5(x 4.2a!=\'P\'){$.S(4,{2a:n});G(\'2a V O P.\')}5(x 4.1a!=\'P\'){$.S(4,{1a:n});G(\'1a V O P.\')}5(x 4.10!=\'P\'){$.S(4,{10:j});G(\'10 V O P.\')}1c.e(\'1I\',4.2a);5(4.18)5(R.N.2Y&&(2b.2W.M(\'3.\')!=-1))$.S(4,{18:n,1H:n,Y:j,1g:\'1y\',1d:\'1y\'});v $.S(4,{1l:n,Y:n,1g:1u,1d:1u,19:n});5(4.1l)$.S(4,{Y:n});5(x 1c.e(\'2w\')==\'C\'||1c.e(\'2w\')==C){p 1U=n;5(1s.H().H().H().I>0){5(1s.H().H().H().7(\'.\'+4.l).I>0){5(1s.H().H().H().7(\'.\'+4.L).I>0){5(1s.H().H().H().7(\'.\'+4.L).2S(\'.\'+4.t).I>0){1U=j}v G(\'1t t \\\'\'+4.t+\'\\\' 1O 1w 1P!\')}v G(\'1t L \\\'\'+4.L+\'\\\' 1O 1w 1P!\')}v G(\'1t l \\\'\'+4.l+\'\\\' 1O 1w 1P!\')}v G(\'1t o \\\'\'+4.o+\'\\\' 1O 1w 1P!\');5(1U){p 1Y=20.3h?20.3h(20.1L.2Q.2y()):20.1L.2Q.2y();5(1Y.M(\'39://\')==0){1Y=1Y.u("39://","");p 3b=1Y.4u("/");p 28=3b[0];5(28!=\'4A.0.0.1\'&&28.M(\'4B\')!=6&&28.M(\'4K\')!=6&&28.M(\'4L.4M\')!=6){G(\'4O 1w 4P 13 4Q 2P 4S 4T 4U. 4W 4X 4Y!\');1U=n}}}1c.e(\'2w\',1U)}5(1c.e(\'2w\')){p 1k,m,1o,2K;1k=$(\'.\'+4.o+\' .\'+4.l+\' z a\').D(1s);p 16=1s.36(\'T\');m=$(\'.\'+4.o+\' .\'+4.l+\' z a[T="\'+16+\'"]\').D(1s);p 2I=$(\'.\'+4.o+\' .\'+4.l+\' z a[T="\'+16+\'"]\').I;p 1e=(m==(2I-1))?0:m+1;1o=$(\'.\'+4.o+\' .\'+4.l+\' z a\').D($(\'.\'+4.o+\' .\'+4.l+\' z a[T="\'+16+\'"]\').f(1e));p 2H=(m==0)?(2I-1):m-1;2K=$(\'.\'+4.o+\' .\'+4.l+\' z a\').D($(\'.\'+4.o+\' .\'+4.l+\' z a[T="\'+16+\'"]\').f(2H));5(!4.10){p 8=$(\'.\'+4.o+\' .\'+4.l+\' z a:f(\'+1k+\')\').H().H().H()}v{p 8=$(\'.\'+4.o+\' .\'+4.l+\' z a[T="\'+16+\'"]\').f(m).H().H().H()}p r=8.7(\'.\'+4.L),c;5(!4.1l)c=r.7(\'.\'+4.t);v 5(x 8.e(\'2E\')==\'C\'||8.e(\'2E\')==C||!8.e(\'2E\')){c=r.7(\'.\'+4.t);8.e(\'2E\',j)}v c=r.7().7(\'.\'+4.t);5(4.18){p 2D=n;c.1J(F(D){5($(13).2S(\'.\'+4.t).I>0&&!2D)2D=j});5(2D)$.S(4,{18:n,1H:n,Y:j,1g:\'1y\',1d:\'1y\'})}p 22=n;5(c.f(m).2S(\'.\'+4.t).I>0)22=j;8.e(\'22\',22);p 23=j;5(c.f(m).w(\'.\'+4.t).I>0){5(x 8.e(\'2z\')==\'C\'||8.e(\'2z\')==C||!8.e(\'2z\')){8.e(\'2z\',j)}v{5(!c.f(m).w(\'.\'+4.o).f(1).e(\'22\'))23=n}}8.e(\'23\',23);p 1B;p U=n;5(4.1g)5((x 4.1g==\'2r\'&&4.1g.1r(/^((2q)|(1y)|(2p))$/i))||(x 4.1g==\'2o\'&&4.1g.2X().1r(/^\\d+$/)&&4.1g<=2m)){1B=4.1g;U=j}v G(\'1B V O 2P 2l 1q <= 2m; 3m 3n \\\'2p\\\', \\\'1y\\\' 1q \\\'2q\\\' 3o O 3q 3r 3t 3u, 2e 1q 3E 2l.\');5(!U)1B=1;p 1n;U=n;5(4.1d)5((x 4.1d==\'2r\'&&4.1d.1r(/^((2q)|(1y)|(2p))$/i))||(x 4.1d==\'2o\'&&4.1d.2X().1r(/^\\d+$/)&&4.1d<=2m)){1n=4.1d;U=j}v G(\'1n V O 2P 2l 1q <= 2m; 3m 3n \\\'2p\\\', \\\'1y\\\' 1q \\\'2q\\\' 3o O 3q 3r 3t 3u, 2e 1q 3E 2l.\');5(!U)1n=1;5(8.e(\'23\')&&(x 8.e(\'1h\')==C||8.e(\'1h\')!=(!4.10?1k:m))){8.e(\'1o\',1o);8.e(\'1e\',1e);8.e(\'2K\',2K);8.e(\'2H\',2H);$(\'.\'+4.o+\' .\'+4.l+\' z a[T="\'+16+\'"]\').4i().1Z(4.35);$(\'.\'+4.o+\' .\'+4.l+\' z a:f(\'+1k+\')\').2Z(4.35);5(x 8.e(\'2j\')==\'C\'||8.e(\'2j\')==C||!8.e(\'2j\')){5(4.1j)8.7(\'.\'+4.l).b(\'1i\',\'24\');v 8.7(\'.\'+4.l).b({\'1i\':\'25\',\'B\':0});8.e(\'2j\',j)}5(c.f(m).w(\'.\'+4.t).I>0){5(x 8.e(\'2i\')==\'C\'||8.e(\'2i\')==C||!8.e(\'2i\')){5(c.f(m).w(\'.\'+4.t).f(0).14(\':1p\'))c.f(m).w(\'.\'+4.t).f(0).b({\'1i\':\'24\'});c.f(m).w(\'.\'+4.t).f(0).7(\'.g-h\').b(\'s\',c.A()+r.A(j)-r.s());5(R.N.1R&&R.N.1S==\'6.0\')c.f(m).w(\'.\'+4.t).f(0).7(\'.g-h\').e(\'3z-s-3A\',c.f(m).w(\'.\'+4.t).f(0).7(\'.g-h\').s());8.e(\'2i\',j)}}r.s(c.f(m).A(j)<8.H().s()?c.f(m).A(j):8.H().s());5(x 8.e(\'2g\')==\'C\'||8.e(\'2g\')==C||!8.e(\'2g\')){5(4.18)r.B(c.3G());v 5(4.19){5(4.1l&&$.N.2O)r.B(c.3G());v r.B(c.4V().Z(j));5(4.1l&&$.N.2O&&c.Z(j)-c.B()==0&&c.B()<r.B())c.B(r.B());p k=c.B();5(R.N.2Y&&(2b.2W.M(\'3.\')!=-1)&&!/3a/.33(2b.3c.2y())){k=k-($(\'.g-h\').b(\'1v\')!=\'J\'?y($(\'.g-h\').b(\'1v\').u(/q/i,\'\')):0);k=k-($(\'.g-h\').b(\'1z\')!=\'J\'?y($(\'.g-h\').b(\'1z\').u(/q/i,\'\')):0);k=k-($(\'.g-h\').b(\'K-Q-s\')!=\'1m\'?y($(\'.g-h\').b(\'K-Q-s\').u(/q/i,\'\')):0);k=k-($(\'.g-h\').b(\'K-X-s\')!=\'1m\'?y($(\'.g-h\').b(\'K-X-s\').u(/q/i,\'\')):0);k=k-($(\'.g-h\').b(\'1D\')!=\'J\'?y($(\'.g-h\').b(\'1D\').u(/q/i,\'\')):0);k=k-($(\'.g-h\').b(\'1C\')!=\'J\'?y($(\'.g-h\').b(\'1C\').u(/q/i,\'\')):0)}v{k=k-(c.7(\'.g-h\').b(\'1v\')!=\'J\'?y(c.7(\'.g-h\').b(\'1v\').u(/q/i,\'\')):0);k=k-(c.7(\'.g-h\').b(\'1z\')!=\'J\'?y(c.7(\'.g-h\').b(\'1z\').u(/q/i,\'\')):0);k=k-(c.7(\'.g-h\').b(\'K-Q-s\')!=\'1m\'?y(c.7(\'.g-h\').b(\'K-Q-s\').u(/q/i,\'\')):0);k=k-(c.7(\'.g-h\').b(\'K-X-s\')!=\'1m\'?y(c.7(\'.g-h\').b(\'K-X-s\').u(/q/i,\'\')):0);k=k-(c.7(\'.g-h\').b(\'1D\')!=\'J\'?y(c.7(\'.g-h\').b(\'1D\').u(/q/i,\'\')):0);k=k-(c.7(\'.g-h\').b(\'1C\')!=\'J\'?y(c.7(\'.g-h\').b(\'1C\').u(/q/i,\'\')):0)}c.7(\'.g-h\').B(k)}5(4.Y)r.b(\'2s\',\'2V\').7(\'.\'+4.t).b({2s:\'3U\',Q:0,1G:0});5(4.1a){8.b({\'2s\':\'2V\',\'3w-3x\':\'3Y\'});r.b({\'3Z\':\'0 J\',\'3w-3x\':\'1G\',\'2s\':\'2V\'});8.3y(\'<2v 2U="\'+4.W+\' \'+4.1W+\'">3B 3C 1G</2v>\').3D(\'<2v 2U="\'+4.W+\' \'+4.21+\'">3B 3C 2T</2v>\');5(4.1j)8.7(\'.\'+4.l).7(\'z:3e-2F\').b(\'47-1G\',8.7(\'.\'+4.W).A(j)+\'q\')}8.e(\'2g\',j)}5(4.1a){p A=r.s();A=A+(r.b(\'3F\')!=\'J\'?y(r.b(\'3F\').u(/q/i,\'\')):0);A=A+(r.b(\'2R\')!=\'J\'?y(r.b(\'2R\').u(/q/i,\'\')):0);A=A+(r.b(\'K-2T-s\')!=\'1m\'?y(r.b(\'K-2T-s\').u(/q/i,\'\')):0);A=A+(r.b(\'K-1G-s\')!=\'1m\'?y(r.b(\'K-1G-s\').u(/q/i,\'\')):0);A=A+(r.b(\'3H\')!=\'J\'?y(r.b(\'3H\').u(/q/i,\'\')):0);A=A+(r.b(\'3L\')!=\'J\'?y(r.b(\'3L\').u(/q/i,\'\')):0);8.s(A+2*8.7(\'.\'+4.W).A(j))}5(c.f(m).w(\'.\'+4.t).I>0){5(x 8.e(\'2A\')==\'C\'||8.e(\'2A\')==C||!8.e(\'2A\')){5(4.1a){5(R.N.1R&&R.N.1S==\'6.0\')c.f(m).w(\'.\'+4.t).f(0).7(\'.g-h\').b({\'s\':c.f(m).w(\'.\'+4.t).f(0).7(\'.g-h\').e(\'3z-s-3A\')+2*8.7(\'.\'+4.W).A(j)});v c.f(m).w(\'.\'+4.t).f(0).7(\'.g-h\').b({\'s\':c.f(m).w(\'.\'+4.t).f(0).7(\'.g-h\').s()+2*8.7(\'.\'+4.W).A(j)});5(R.N.1R&&R.N.1S==\'6.0\')c.f(m).w(\'.\'+4.t).f(0).b(\'s\',c.f(m).w(\'.\'+4.t).f(0).7(\'.g-h\').A(j))};c.f(m).w(\'.\'+4.t).f(0).b({\'B\':\'\'});5(4.19)c.f(m).w(\'.\'+4.L).f(1).B(c.f(m).w(\'.\'+4.t).f(0).Z(j));8.e(\'2A\',j)}}5(!4.18&&!4.19)r.B(c.f(m).Z(j));5(c.f(m).w(\'.\'+4.t).I>0){5(!4.18&&!4.19)c.f(m).w(\'.\'+4.L).f(1).B(c.f(m).w(\'.\'+4.t).f(0).Z(j))}5(4.1a&&4.3s){5(m==0){8.7(\'.\'+4.1W).2B()}v 8.7(\'.\'+4.1W).2C();5(m==2I-1){8.7(\'.\'+4.21).2B()}v 8.7(\'.\'+4.21).2C()}5(4.1a){p 12;U=n;5(4.27)5(x 4.27==\'2r\'&&4.27.1r(/^((Q)|(1X)|(X))$/i)){12=4.27;U=j}v G(\'12 V O \\\'Q\\\', \\\'1X\\\' 1q \\\'X\\\'.\');5(!U)12=\'1X\';5(12==\'Q\'){p 1F;U=n;5(4.1K)5(x 4.1K==\'2o\'&&4.1K.2X().1r(/^\\d+$/)&&4.1K<=2e){1F=4.1K;U=j}v G(\'1F V O 2o 1q <= 2e.\');5(!U)1F=0}F 2G(E){p 1E;U=n;5(4.2c)5(x 4.2c==\'2r\'&&4.2c.1r(/^((2u)|(1A))$/i)){1E=4.2c;U=j}v G(\'1E V O \\\'2u\\\' 4l \\\'1A\\\'.\');5(!U)1E=\'2u\';5(4.1j&&E.7(\'.\'+4.l).B()==0)E.7(\'.\'+4.l).B(E.7(\'.\'+4.l).7(\'z\').Z(j));5(12==\'Q\')E.7(\'.\'+4.W).b(\'Q\',1E==\'1A\'?12.u(\'Q\',(0+1F)+\'q\'):12.u(\'Q\',(4.1j&&E.17().M(4.l)<E.17().M(4.L)&&E.17().M(4.l)!=-1&&E.17().M(4.L)!=-1)?(E.7(\'.\'+4.l).Z(j)+1F)+\'q\':(0+1F)+\'q\'));v 5(12==\'1X\')E.7(\'.\'+4.W).b(\'Q\',12.u(\'1X\',1E==\'1A\'?3i.3j((E.Z(j)-E.7(\'.\'+4.W).Z())/2)+\'q\':(3i.3j((r.Z(j)-E.7(\'.\'+4.W).Z())/2)+((4.1j&&E.17().M(4.l)<E.17().M(4.L)&&E.17().M(4.l)!=-1&&E.17().M(4.L)!=-1)?E.7(\'.\'+4.l).Z(j):0))+\'q\'));v 5(12==\'X\')E.7(\'.\'+4.W).b(\'X\',1E==\'1A\'?12.u(\'X\',0):12.u(\'X\',(4.1j&&E.17().M(4.l)>E.17().M(4.L)&&E.17().M(4.l)!=-1&&E.17().M(4.L)!=-1)?E.7(\'.\'+4.l).Z(j)+\'q\':0))}5(4.19){5(x 8.e(\'2J\')==\'C\'||8.e(\'2J\')==C||!8.e(\'2J\')){2G(8);8.e(\'2J\',j)}}v 2G(8)}5(4.18){r.4q({4r:4.1H,4s:(1B!=1)?1B:4t,46:(1n!=1)?1n:4v,3l:\'4w\'},m,1);8.e(\'1h\',(!4.10?1k:m));p k=c.B();5(R.N.2Y&&(2b.2W.M(\'3.\')!=-1)&&!/3a/.33(2b.3c.2y())){k=k-($(\'.g-h\').b(\'1v\')!=\'J\'?y($(\'.g-h\').b(\'1v\').u(/q/i,\'\')):0);k=k-($(\'.g-h\').b(\'1z\')!=\'J\'?y($(\'.g-h\').b(\'1z\').u(/q/i,\'\')):0);k=k-($(\'.g-h\').b(\'K-Q-s\')!=\'1m\'?y($(\'.g-h\').b(\'K-Q-s\').u(/q/i,\'\')):0);k=k-($(\'.g-h\').b(\'K-X-s\')!=\'1m\'?y($(\'.g-h\').b(\'K-X-s\').u(/q/i,\'\')):0);k=k-($(\'.g-h\').b(\'1D\')!=\'J\'?y($(\'.g-h\').b(\'1D\').u(/q/i,\'\')):0);k=k-($(\'.g-h\').b(\'1C\')!=\'J\'?y($(\'.g-h\').b(\'1C\').u(/q/i,\'\')):0)}v{k=k-(c.7(\'.g-h\').b(\'1v\')!=\'J\'?y(c.7(\'.g-h\').b(\'1v\').u(/q/i,\'\')):0);k=k-(c.7(\'.g-h\').b(\'1z\')!=\'J\'?y(c.7(\'.g-h\').b(\'1z\').u(/q/i,\'\')):0);k=k-(c.7(\'.g-h\').b(\'K-Q-s\')!=\'1m\'?y(c.7(\'.g-h\').b(\'K-Q-s\').u(/q/i,\'\')):0);k=k-(c.7(\'.g-h\').b(\'K-X-s\')!=\'1m\'?y(c.7(\'.g-h\').b(\'K-X-s\').u(/q/i,\'\')):0);k=k-(c.7(\'.g-h\').b(\'1D\')!=\'J\'?y(c.7(\'.g-h\').b(\'1D\').u(/q/i,\'\')):0);k=k-(c.7(\'.g-h\').b(\'1C\')!=\'J\'?y(c.7(\'.g-h\').b(\'1C\').u(/q/i,\'\')):0)}c.7(\'.g-h\').B(k)}v 5(4.1l){5(x 8.e(\'15\')==\'C\'||8.e(\'15\')==C||!8.e(\'15\')){r.b(\'4y\',\'1p\');5(c.14(\':1p\'))c.b(\'1i\',\'24\');c.4z(\'<2M 2U="2N"></2M>\').b({\'4C\':\'1G\'});5(4.19&&$.N.2O)c.b(\'B\',r.B());r.7(\'.2N\').3y(\'\').3D(\'<2M 4D="4E: 4F; B: 3p; /*K-Q: 4H 3p 4I*/">&4J;</2M>\');p 2L=0;c.1J(F(D){2L=2L+$(13).A(j)});r.7(\'.2N\').b({\'s\':2L});8.e(\'15\',j)}p 2f=0;c.3d(\':4N(\'+m+\')\').1J(F(D){2f=2f+$(13).A(j)});r.7(\'.2N\').26(n,n).1V({\'2R\':-2f},(1n!=1)?1n:2e,4.1Q,F(){})}v{p 2x=j;p 1M={},1N={};5(4.Y){1N[\'2t\']=\'2B\';1M[\'2t\']=\'2C\';2x=j;1N={2t:0};1M={2t:1};2x=n}v{1N[\'B\']=\'2B\';1M[\'B\']=\'2C\'}5(2x){5(x 8.e(\'15\')==\'C\'||8.e(\'15\')==C||!8.e(\'15\')){5(c.14(\':1w(:1p)\'))c.b(\'1i\',\'25\');8.e(\'15\',j)}p 11=c;11.26(n,j).1V(1N,1B,!4.Y?4.1Q:\'\',F(){});p 1b=!4.10?$(\'.\'+4.o+\' .\'+4.L+\' .\'+4.t+\':f(\'+1k+\')\'):c.3d(F(D){2n D==m});1b.26(n,j).1V(1M,1n,F(){5(!(c.f(m).w(\'.\'+4.t).I>0)&&4.1a&&!4.Y&&(R.N.1R&&R.N.1S==\'6.0\'))5(4.1a&&8.s()>(r.A(j)+2*8.7(\'.\'+4.W).A(j)))8.s(r.A(j)+2*8.7(\'.\'+4.W).A(j));5(c.f(m).w(\'.\'+4.t).I>0&&!4.19&&!4.Y&&(R.N.1R&&R.N.1S==\'6.0\'))5(x 8.e(\'2k\')==\'C\'||8.e(\'2k\')==C||!8.e(\'2k\'))8.e(\'2k\',j);v 5(c.f(m).w(\'.\'+4.L).f(1).B()>c.f(m).w(\'.\'+4.t).f(0).B())c.f(m).w(\'.\'+4.L).f(1).b({\'B\':c.f(m).w(\'.\'+4.t).f(0).Z(j)});5(4.1a&&!4.Y&&(R.N.1R&&R.N.1S==\'6.0\'))2G(8)});8.e(\'1h\',(!4.10?1k:m))}v{5(x 8.e(\'15\')==\'C\'||8.e(\'15\')==C||!8.e(\'15\')){5(m!=$(\'.\'+4.o+\' .\'+4.l+\' z a[T="\'+16+\'"]\').I-1){c.1J(F(D){5(!$(13).14(\':1p\')&&D<c.I-1)$(13).b(\'1i\',\'25\')});8.e(\'1h\',!4.10?$(\'.\'+4.o+\' .\'+4.l+\' z a\').D(8.7(\'.\'+4.l).7(\'z:1h-2F\').7(\'a[T="\'+16+\'"]\')):$(\'.\'+4.o+\' .\'+4.l+\' z a[T="\'+16+\'"]\').I-1)}v{c.1J(F(D){5(!$(13).14(\':1p\')&&D!=c.I-2)$(13).b(\'1i\',\'25\')});8.e(\'1h\',!4.10?$(\'.\'+4.o+\' .\'+4.l+\' z a\').D(8.7(\'.\'+4.l).7(\'z:1h-2F\').7(\'a[T="\'+16+\'"]\'))-1:$(\'.\'+4.o+\' .\'+4.l+\' z a[T="\'+16+\'"]\').I-2)};8.e(\'15\',j)}p 1b=!4.10?$(\'.\'+4.o+\' .\'+4.L+\' .\'+4.t+\':f(\'+1k+\')\'):c.f(m);5(1b.14(\'.2d\'))1b.1Z(\'2d\');5(!1b.14(\'.29\'))1b.2Z(\'29\');5(1b.14(\':1p\'))1b.b(\'1i\',\'24\');p 11=!4.10?$(\'.\'+4.o+\' .\'+4.L+\' .\'+4.t+\':f(\'+8.e(\'1h\')+\')\'):c.f(8.e(\'1h\'));5(11.14(\'.29\'))11.1Z(\'29\');5(!11.14(\'.2d\'))11.2Z(\'2d\');5(11.14(\':1p\'))11.b(\'1i\',\'24\');11.26(n,n).1V(1N,1B,F(){11.1Z(\'2d\');5(!11.14(\':1p\'))11.b(\'1i\',\'25\')});1b.26(n,n).1V(1M,1n,F(){1b.1Z(\'29\')});8.e(\'1h\',(!4.10?1k:m))}}}}}})(R);p 4={o:\'g-1A\',t:\'g-3v\',l:\'34\',W:\'3k\',1W:\'3g\',21:\'37\'};R(F($){p 30=50;p 1I=51 52();$(\'.\'+4.o).1J(F(D){1I[D]=31(F(){5($(\'.\'+4.o+\':f(\'+D+\')\').e(\'1I\'))$(\'.\'+4.o+\':f(\'+D+\')\').7(\'.\'+4.l).7(\'z:f(\'+$(\'.\'+4.o+\':f(\'+D+\')\').e(\'1e\')+\')\').7(\'a\').1T()},30);$(13).54(F(){55(1I[D])}).56(F(){1I[D]=31(F(){5($(\'.\'+4.o+\':f(\'+D+\')\').e(\'1I\'))$(\'.\'+4.o+\':f(\'+D+\')\').7(\'.\'+4.l).7(\'z:f(\'+$(\'.\'+4.o+\':f(\'+D+\')\').e(\'1e\')+\')\').7(\'a\').1T()},30)})});32=1L.2h;20.31(F(){5(32!=1L.2h){$(\'.g-1A .34 z a[2Q="\'+1L.2h+\'"]\').1T();32=1L.2h}},59);$(\'.\'+4.o+\' .\'+4.t+\' a.5a-5b\').3I(F(){p 1o=$(13).3f(4);5(1o!=-1)$(\'.\'+4.o+\' .\'+4.l+\' z a:f(\'+1o+\')\').1T();2n n});p 3J=\'33!\';$(\'.\'+4.o+\' .\'+4.l+\' z a\').5e(\'3I\',{5f:3J},F(5g,1f){$(13).1T(1f);2n n})});',62,328,'||||settings|if||children|tabbedBox|||css|tabbedContent||data|eq|tabbed|inner||true|innerHeight|tabsClass|relativeCurrentTab|false|tabbedBoxClass|var|px|tabbedContainer|width|tabbedContentClass|replace|else|parents|typeof|parseInt|li|outerWidth|height|undefined|index|tabbedBoxObj|function|alert|parent|length|auto|border|tabbedContainerClass|indexOf|browser|be|boolean|top|jQuery|extend|rel|fxDefault|should|controlClass|bottom|fxFade|outerHeight|fxRelative|toHide|controlPosition|this|is|readyToo|thisRel|html|fxFlip|fxEqualHeight|fxControl|toShow|root|fxShowSpeed|relativeNextTab|options|fxHideSpeed|last|display|fxTabs|currentTab|fxScroll|medium|showSpeed|nextTab|hidden|and|match|clickedTab|Your|null|marginTop|not|clickedLink|normal|marginBottom|box|hideSpeed|paddingBottom|paddingTop|controlBase|controlPaddingTop|left|fxFlipVertical|autoRotate|each|fxControlPaddingTop|location|showAnim|hideAnim|does|exist|fxEasing|msie|version|openTab|continueBl|animate|leftControlClass|middle|url|removeClass|window|rightControlClass|rotateNested|continueRotateNested|block|none|stop|fxControlPosition|serverName|back|fxAutoRotate|navigator|fxControlBase|front|400|SlideInnerMarginLeft|ready|hash|readyNested|readyTabs|ie6Ready|milliseconds|2000|return|number|fast|slow|string|position|opacity|container|span|continue|hideShow|toLowerCase|readyNestedZero|readyNestedToo|hide|show|FlipToFade|readyFirst|child|setControlPosition|relativePreviousTab|numberOfTabs|readyControlPosition|previousTab|SlideInnerWidth|div|slideInner|mozilla|in|href|marginLeft|find|right|class|relative|appVersion|toString|safari|addClass|rotateSpeed|setInterval|j_last_known_hash|test|tabs|activeClass|attr|rightControl|attribute|http|chrome|urlExplode|userAgent|filter|first|OpenNextTab|leftControl|decodeURI|Math|floor|control|easing|The|strings|can|1px|supplied|to|fxShowHideControl|indicate|200|content|text|align|prepend|tabbedInner|ie6|Clicking|moves|append|600|marginRight|highest|paddingRight|click|message|fn|paddingLeft|easeInElastic|easeOutElastic|easeInOutElastic|easeInBack|easeOutBack|easeInOutBack|easeInBounce|easeOutBounce|absolute|easeInOutBounce|fxRandomizeEffects|compatible|center|margin|with|jquery|fx|digits|active|of|openSpeed|padding|consist|may|between|easeInQuad|easeOutQuad|easeInOutQuad|easeInCubic|easeOutCubic|easeInOutCubic|easeInQuart|blur|easeOutQuart|easeInOutQuart|or|easeInQuint|easeOutQuint|must|easeInOutQuint|quickFlipper|vertical|closeSpeed|180|split|120|linear|easeInSine|overflow|wrapAll|127|bous|float|style|clear|both|easeOutSine|blue|solid|nbsp|busin|he|goo|lt|Do|include|script|easeInOutSine|your|own|uses|equalHeights|TAKE|IT|OUT|easeInExpo|5000|new|Array|name|mouseover|clearInterval|mouseout|easeOutExpo|easeInOutExpo|500|tab|link|easeInCirc|easeOutCirc|bind|msg|event|easeInOutCirc'.split('|'),0,{}))
jQuery(function($){ // Document is ready	
	$(".tabbed-box .tabs li a:eq(0)")/*.click()*/.trigger('click'
			, { // openTab settings
				fxFlip: true,
				activeClass: 'selected'
			}
	);
	$(".tabbed-box .tabs li a:eq(8)")/*.click()*/.trigger('click' //a:eq(5)
			, { // openTab settings
				fxFlip: true,
				fxFlipVertical: true,
				activeClass: 'selected'
			}
	);
	$(".tabbed-box .tabs li a:eq(14)")/*.click()*/.trigger('click' //a:eq(11)
			, { // openTab settings
				fxFade: true,
				fxHideSpeed: 'normal',
				fxShowSpeed: 'normal',
				activeClass: 'selected'
				//,fxEqualHeight: true
			}
	);
	$(".tabbed-box .tabs li a:eq(16)")/*.click()*/.trigger('click'//a:eq(13)
			, { // openTab settings
				fxHideSpeed: "fast",
				fxShowSpeed: "normal",
				activeClass: 'selected'
				//,fxEqualHeight: true
			}
	);
	// Event listeners for .controls clicks
	$('.' + settings.tabbedBoxClass + ' .' + settings.controlClass).bind('click', function(){
		//var nextPreviousTab = $(this).OpenNextTab( settings );
		//if (nextPreviousTab != -1) $('.' + settings.tabbedBoxClass + ' .' + settings.tabsClass + ' li a:eq('+nextPreviousTab+')')/*.click()*/.openTab();
		if ($(this).is('.' + settings.rightControlClass) || $(this).is('.' + settings.rightControlClass + 'Custom')) 
			   $('.' + settings.tabbedBoxClass + ' .' + settings.tabsClass + ' li a:eq('+$(this).parents('.' + settings.tabbedBoxClass).data('nextTab')+')')/*.click()*/.openTab();
		else   $('.' + settings.tabbedBoxClass + ' .' + settings.tabsClass + ' li a:eq('+$(this).parents('.' + settings.tabbedBoxClass).data('previousTab')+')')/*.click()*/.openTab();
		return false; //prevent the default link click behavior by returning false
	});
});

/* ie6-warning & correctPNG
----------------------------------------------------------------------------------------------------------------------------------------- */
	var ie55 = (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) == 4 && navigator.appVersion.indexOf("MSIE 5.5") != -1);
	var ie6 = (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) == 4 && navigator.appVersion.indexOf("MSIE 6.0") != -1);
	/* ie6-warning Based on jQuery Purr version 0.1.0 by R.A. Ray (Copyright (c) 2008 Net Perspective. Licensed under the MIT License)
	------------------------------------------------------------------------------------------------------------------------------------- */
	eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('(3($){$.6=3(2,1){2=$(2);5(!1.8)2.12(\'w-r\');d 4=y.Z(\'6-o\');5(!4)4=\'<q X="6-o"></q>\';4=$(4);$(\'V\').U(4);x();3 x(){d 9=y.T(\'a\');$(9).S({D:\'9\',Q:\'#9\',P:\'M\'}).s(2).J(3(){i();v j});2.s(4).F();5(l.z.A&&1.b){2.E()}C{2.R(1.k)};5(!1.8){d t=G(3(){5(2.H(\'.w-r\').I==0){K(t);L(3(){i()},1.h)}},N)}}3 i(){5(l.z.A&&1.b){2.O({p:0}).g({n:\'m\'},{f:1.7,e:3(){2.u()}})}C{2.g({p:\'0\'},{f:1.7,e:3(){2.g({n:\'m\'},{f:1.7,e:3(){2.u()}})}})}}};$.W.6=3(1){1=1||{};1.k=1.k||B;1.7=1.7||B;1.h=1.h||Y;1.8=1.8||j;1.b=1.b||j;c.10(3(){11 $.6(c,1)});v c}})(l);',62,65,'|options|notice|function|cont|if|purr|fadeOutSpeed|isSticky|close||usingTransparentPNG|this|var|complete|duration|animate|removeTimer|removeNotice|false|fadeInSpeed|jQuery|0px|height|container|opacity|div|sticky|appendTo|topSpotInt|remove|return|not|notify|document|browser|msie|500|else|className|show|hide|setInterval|prevAll|length|click|clearInterval|setTimeout|Close|200|css|innerHTML|href|fadeIn|attr|createElement|append|body|fn|id|12000|getElementById|each|new|addClass'.split('|'),0,{}))
	jQuery(function($){ // Document is ready
		if (jQuery.browser.msie && jQuery.browser.version<=6 && (ie55 || ie6)){
			eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('x 2=\'<1 3="2">\'+\'<1 3="2-j">\'+\'<1x S="R/Q.9/b.P" O="" 3="9-b" N="M" />\'+\'<1 3="2-j-L">\'+\'<h>K!</h>\';J(I=="H")2+=\'<p>q D t u 6.0. q n\\\'&w;y v z A v s&r;B&r; C 4.</p>\'+\'<p>E F G k <a i="g://f.e.d/c/4-8/" 7="5" 3="o">T &U; V W X</a> Y Z 10 11.</p>\'+\'<p>12 13 14&15;16 k 17-m&w;18</p>\';19 2+=\'<p>1a\\\'1b 1c 1d 1e 1f 1g 1h. 1i <a i="g://f.e.d/c/4-8/" 7="5" 3="o">1j 1k t u</a> 1l 1m 1n 1o</p>\'+\'<p>1p 1q 1r 1s 1t 1u 1v 1w.</p>\';2+=\'<1>&l;</1>\'+\'<1>&l;</1>\'+\'</1>\'+\'</1>\'+\'<1 3="2-1y">\'+\'</1>\'+\'</1>\';',62,97,'|div|notice|class|internet|_blank||target|explorer|purr||info|windows|com|microsoft|www|http|h3|href|body|de|nbsp|||browserLink||Vous|eacute||Internet|Explorer|en|ecirc|var|tes|aucun|cas|curit|sur|utilisez|Nous|vous|recommandons|Fr|contentLanguage|if|Attention|container|left|align|alt|png|jquery|images|src|mettre|agrave|jour|votre|navigateur|le|plus|rapidement|possible|Ce|message|dispara|icirc|tra|lui|me|else|You|re|using|an|old|and|buggy|browser|Consider|upgrading|your|to|the|latest|version|This|notification|will|fade|out|on|its|own|img|bottom'.split('|'),0,{}))
			$( notice ).purr({
				usingTransparentPNG: true
			});
		};
	});
	/* Correctly handling PNG transparency in Win IE 5.5 & 6
	------------------------------------------------------------------------------------------------------------------------------------- */
	eval(function(p,a,c,k,e,r){e=function(c){return c.toString(a)};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('h d(){4 5=/\\.5$/i;4 1=e.f(\'7\');8(4 i=0,l=1.a;i<l;i++){b(5.c(1.2(i).3)){1.2(i).6.g=1.2(i).9;1.2(i).6.j=1.2(i).k;1.2(i).6.m=\'n:o.p.q(3=\\\'\'+1.2(i).3+\'\\\',r=\\\'s\\\')\';1.2(i).3=\'t/u.v\'}}}',32,32,'|imgs|item|src|var|png|style|img|for|offsetWidth|length|if|test|correctPNG|document|getElementsByTagName|width|function||height|offsetHeight||filter|progid|DXImageTransform|Microsoft|AlphaImageLoader|sizingMethod|scale|images|pixel|gif'.split('|'),0,{}))
	jQuery(function($){ // Document is ready
		if (jQuery.browser.msie && jQuery.browser.version<=6 && (ie55 || ie6)){
			correctPNG();
		}
	});	

/* CeeBox 2.1.5 jQuery Plugin (Not compatible with jQuery Easing v1.1)
----------------------------------------------------------------------------------------------------------------------------------------- */
//jquery swfobject 1.0.9
(function(F,C){var D=function(H){var G,I=[];for(G in H){if(/string|number/.test(typeof H[G])&&H[G]!==""){I.push(G+'="'+H[G]+'"')}}return I[A]("")},E=function(I){var G,K,J=[],H;if(typeof I=="object"){for(G in I){if(typeof I[G]=="object"){H=[];for(K in I[G]){H.push([K,"=",encodeURIComponent(I[G][K])][A](""))}I[G]=H[A]("&amp;")}if(I[G]){J.push(['<param name="',G,'" value="',I[G],'" />'][A](""))}}I=J[A]("")}return I},B=false,A="join";F[C]=(function(){try{var G="0,0,0",H=navigator.plugins["Shockwave Flash"]||ActiveXObject;G=H.description||(function(){try{return(new H("ShockwaveFlash.ShockwaveFlash")).GetVariable("$version")}catch(J){}}())}catch(I){}G=G.match(/^[A-Za-z\s]*?(\d+)[\.|,](\d+)(?:\s+[d|r]|,)(\d+)/);return{available:G[1]>0,activeX:H&&!H.name,version:{major:G[1]*1,minor:G[2]*1,release:G[3]*1},hasVersion:function(K){var N=this.version,L="major",M="minor",J="release";K=(/string|number/.test(typeof K))?K.toString().split("."):K||[0,0,0];K=[K[L]||K[0]||N[L],K[M]||K[1]||N[M],K[J]||K[2]||N[J]];return(K[0]<N[L])||(K[0]==N[L]&&K[1]<N[M])||(K[0]==N[L]&&K[1]==N[M]&&K[2]<=N[J])},expressInstall:"expressInstall.swf",create:function(J){if(!F[C].available||B||!typeof J=="object"||!J.swf){return false}if(J.hasVersion&&!F[C].hasVersion(J.hasVersion)){J={swf:J.expressInstall||F[C].expressInstall,attrs:{id:J.id||"SWFObjectExprInst",name:J.name,height:Math.max(J.height||137),width:Math.max(J.width||214)},params:{flashvars:{MMredirectURL:location.href,MMplayerType:(F[C].activeX)?"ActiveX":"PlugIn",MMdoctitle:document.title.slice(0,47)+" - Flash Player Installation"}}};B=true}else{J=F.extend(true,{attrs:{id:J.id,name:J.name,height:J.height||180,width:J.width||320},params:{wmode:J.wmode||"opaque",flashvars:J.flashvars}},J)}if(F[C].activeX){J.attrs.classid=J.attrs.classid||"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000";J.params.movie=J.params.movie||J.swf}else{J.attrs.type=J.attrs.classid||"application/x-shockwave-flash";J.attrs.data=J.attrs.data||J.swf}return["<object ",D(J.attrs),">",E(J.params),"</object>"][A]("")}}}());F.fn[C]=function(G){if(typeof G=="object"){this.each(function(){var I=document.createElement(C);var H=F[C].create(G);if(H){I.innerHTML=H;if(I.childNodes[0]){this.appendChild(I.childNodes[0])}}})}else{if(typeof G=="function"){this.find("object").andSelf().filter("object").each(function(){var I=this,H="jsInteractionTimeoutMs";I[H]=I[H]||0;if(I[H]<660){if(I.clientWidth||I.clientHeight){G.call(this)}else{setTimeout(function(){F(I)[C](G)},I[H]+66)}}})}}return this}}(jQuery,"flash"));
/* Metadata - jQuery plugin for parsing metadata from elements
 * Copyright (c) 2006 John Resig, Yehuda Katz, J?örn Zaefferer, Paul McLanahan
 * Dual licensed under the MIT and GPL licenses: http://www.opensource.org/licenses/mit-license.php and http://www.gnu.org/licenses/gpl.html
 */
(function($){$.extend({metadata:{defaults:{type:'class',name:'metadata',cre:/({.*})/,single:'metadata'},setType:function(type,name){this.defaults.type=type;this.defaults.name=name},get:function(elem,opts){var settings=$.extend({},this.defaults,opts);if(!settings.single.length)settings.single='metadata';var data=$.data(elem,settings.single);if(data)return data;data="{}";var getData=function(data){if(typeof data!="string")return data;if(data.indexOf('{')<0){data=eval("("+data+")")}};var getObject=function(data){if(typeof data!="string")return data;data=eval("("+data+")");return data};if(settings.type=="html5"){var object={};$(elem.attributes).each(function(){var name=this.nodeName;if(name.match(/^data-/))name=name.replace(/^data-/,'');else return true;object[name]=getObject(this.nodeValue)})}else{if(settings.type=="class"){var m=settings.cre.exec(elem.className);if(m)data=m[1]}else if(settings.type=="elem"){if(!elem.getElementsByTagName)return;var e=elem.getElementsByTagName(settings.name);if(e.length)data=$.trim(e[0].innerHTML)}else if(elem.getAttribute!=undefined){var attr=elem.getAttribute(settings.name);if(attr)data=attr}object=getObject(data.indexOf("{")<0?"{"+data+"}":data)};$.data(elem,settings.single,object);return object}}});$.fn.metadata=function(opts){return $.metadata.get(this[0],opts)}})(jQuery);
/* jQuery Color Animations
 * Copyright 2007 John Resig
 * Released under the MIT and GPL licenses.
 */
(function(jQuery){jQuery.each(['backgroundColor','borderBottomColor','borderLeftColor','borderRightColor','borderTopColor','color','outlineColor'],function(i,attr){jQuery.fx.step[attr]=function(fx){if(fx.state==0){fx.start=getColor(fx.elem,attr);fx.end=getRGB(fx.end)}fx.elem.style[attr]="rgb("+[Math.max(Math.min(parseInt((fx.pos*(fx.end[0]-fx.start[0]))+fx.start[0]),255),0),Math.max(Math.min(parseInt((fx.pos*(fx.end[1]-fx.start[1]))+fx.start[1]),255),0),Math.max(Math.min(parseInt((fx.pos*(fx.end[2]-fx.start[2]))+fx.start[2]),255),0)].join(",")+")"}});function getRGB(color){var result;if(color&&color.constructor==Array&&color.length==3)return color;if(result=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(color))return[parseInt(result[1]),parseInt(result[2]),parseInt(result[3])];if(result=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(color))return[parseFloat(result[1])*2.55,parseFloat(result[2])*2.55,parseFloat(result[3])*2.55];if(result=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(color))return[parseInt(result[1],16),parseInt(result[2],16),parseInt(result[3],16)];if(result=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(color))return[parseInt(result[1]+result[1],16),parseInt(result[2]+result[2],16),parseInt(result[3]+result[3],16)];return colors[jQuery.trim(color).toLowerCase()]}function getColor(elem,attr){var color;do{color=jQuery.curCSS(elem,attr);if(color!=''&&color!='transparent'||jQuery.nodeName(elem,"body"))break;attr="backgroundColor"}while(elem=elem.parentNode);return getRGB(color)};var colors={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0]}})(jQuery);
/* CeeBox 2.1.5 jQuery Plugin
 * Requires jQuery 1.3.2 and swfobject.jquery.js plugin to work
 * Code hosted on GitHub (http://github.com/catcubed/ceebox) Please visit there for version history information
 * By Colin Fahrion (http://www.catcubed.com)
 * Inspiration for ceebox comes from Thickbox (http://jquery.com/demo/thickbox/) and Videobox (http://videobox-lb.sourceforge.net/)
 * However, along the upgrade path ceebox has morphed a long way from those roots.
 * Copyright (c) 2009 Colin Fahrion
 * Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php
*/

// To make ceebox work add $(".ceebox").ceebox(); to your global js file or if you don't have one just uncomment the following...
//$(document).ready(function(){ $(".ceebox").ceebox();});

/* OPTIONAL DEFAULT opts
  * You can change many of the default options
  * $(".ceebox").ceebox({vidWidth:600,vidHeight:400,htmlWidth:600,htmlHeight:400,animSpeed:"fast",overlayColor:"#f00",overlayOpacity:0.8});
*/
(function($){$.ceebox={version:"2.1.5"};$.fn.ceebox=function(opts){opts=$.extend({selector:$(this).selector},$.fn.ceebox.defaults,opts);var elem=this;var selector=$(this).selector;if(opts.videoJSON){$.getJSON(opts.videoJSON,function(json){$.extend($.fn.ceebox.videos,json);init(elem,opts,selector)})}else{init(elem,opts,selector)}return this};$.fn.ceebox.defaults={html:true,image:true,video:true,modal:false,titles:true,htmlGallery:true,imageGallery:true,videoGallery:true,videoWidth:false,videoHeight:false,videoRatio:"16:9",htmlWidth:false,htmlHeight:false,htmlRatio:false,imageWidth:false,imageHeight:false,animSpeed:"normal",easing:"swing",fadeOut:400,fadeIn:400,overlayColor:"#000",overlayOpacity:0.8,boxColor:"",textColor:"",borderColor:"",borderWidth:"3px",padding:15,margin:150,onload:null,unload:null,videoJSON:null,iPhoneRedirect:true};$.fn.ceebox.ratios={"4:3":1.333,"3:2":1.5,"16:9":1.778,"1:1":1,"square":1};$.fn.ceebox.relMatch={width:/(?:width:)([0-9]+)/i,height:/(?:height:)([0-9]+)/i,ratio:/(?:ratio:)([0-9\.:]+)/i,modal:/modal:true/i,nonmodal:/modal:false/i,videoSrc:/(?:videoSrc:)(http:[\/\-\._0-9a-zA-Z:]+)/i,videoId:/(?:videoId:)([\-\._0-9a-zA-Z:]+)/i};$.fn.ceebox.loader="<div id='cee_load' style='z-index:105;top:50%;left:50%;position:fixed'></div>";$.fn.ceebox.videos={base:{param:{wmode:"transparent",allowFullScreen:"true",allowScriptAccess:"always"},flashvars:{autoplay:true}},facebook:{siteRgx:/facebook\.com\/video/i,idRgx:/(?:v=)([a-zA-Z0-9_]+)/i,src:"http://www.facebook.com/v/[id]"},youtube:{siteRgx:/youtube\.com\/watch/i,idRgx:/(?:v=)([a-zA-Z0-9_\-]+)/i,src:"http://www.youtube.com/v/[id]&hl=en&fs=1&autoplay=1"},metacafe:{siteRgx:/metacafe\.com\/watch/i,idRgx:/(?:watch\/)([a-zA-Z0-9_]+)/i,src:"http://www.metacafe.com/fplayer/[id]/.swf"},google:{siteRgx:/google\.com\/videoplay/i,idRgx:/(?:id=)([a-zA-Z0-9_\-]+)/i,src:"http://video.google.com/googleplayer.swf?docId=[id]&hl=en&fs=true",flashvars:{playerMode:"normal",fs:true}},spike:{siteRgx:/spike\.com\/video|ifilm\.com\/video/i,idRgx:/(?:\/)([0-9]+)/i,src:"http://www.spike.com/efp",flashvars:{flvbaseclip:"[id]"}},vimeo:{siteRgx:/vimeo\.com\/[0-9]+/i,idRgx:/(?:\.com\/)([a-zA-Z0-9_]+)/i,src:"http://www.vimeo.com/moogaloop.swf?clip_id=[id]&server=vimeo.com&show_title=1&show_byline=1&show_portrait=0&color=&fullscreen=1"},dailymotion:{siteRgx:/dailymotion\.com\/video/i,idRgx:/(?:video\/)([a-zA-Z0-9_]+)/i,src:"http://www.dailymotion.com/swf/[id]&related=0&autoplay=1"},cnn:{siteRgx:/cnn\.com\/video/i,idRgx:/(?:\?\/video\/)([a-zA-Z0-9_\/\.]+)/i,src:"http://i.cdn.turner.com/cnn/.element/apps/cvp/3.0/swf/cnn_416x234_embed.swf?context=embed&videoId=[id]",width:416,height:374}};$.fn.ceebox.overlay=function(opts){opts=$.extend({width:60,height:30,type:"html"},$.fn.ceebox.defaults,opts);if($("#cee_overlay").size()===0){$("<div id='cee_overlay'></div>").css({opacity:opts.overlayOpacity,position:"absolute",top:0,left:0,backgroundColor:opts.overlayColor,width:"100%",height:$(document).height(),zIndex:100}).appendTo($("body"))}if($("#cee_box").size()===0){var pos=boxPos(opts);var boxCSS={position:pos.position,zIndex:102,top:"50%",left:"50%",height:opts.height+"px",width:opts.width+"px",marginLeft:pos.mleft+'px',marginTop:pos.mtop+'px',opacity:0,borderWidth:opts.borderWidth,borderColor:opts.borderColor,backgroundColor:opts.boxColor,color:opts.textColor};$("<div id='cee_box'></div>").css(boxCSS).appendTo("body").animate({opacity:1},opts.animSpeed,function(){$("#cee_overlay").addClass("cee_close")})}$("#cee_box").removeClass().addClass("cee_"+opts.type);if($("#cee_load").size()===0){$($.fn.ceebox.loader).appendTo("body")}$("#cee_load").show("fast").animate({opacity:1},"fast")};$.fn.ceebox.popup=function(content,opts){var page=pageSize(opts.margin);opts=$.extend({width:page.width,height:page.height,modal:false,type:"html",onload:null},$.fn.ceebox.defaults,opts);var gallery,family;if($(content).is("a,area,input")&&(opts.type=="html"||opts.type=="image"||opts.type=="video")){if(opts.gallery){family=$(opts.selector).eq(opts.gallery.parentId).find("a[href],area[href],input[href]")}Build[opts.type].prototype=new BoxAttr(content,opts);var cb=new Build[opts.type]();content=cb.content;opts.action=cb.action;opts.modal=cb.modal;if(opts.titles){opts.titleHeight=$(cb.titlebox).contents().contents().wrap("<div></div>").parent().attr("id","ceetitletest").css({position:"absolute",top:"-300px",width:cb.width+"px"}).appendTo("body").height();$("#ceetitletest").remove();opts.titleHeight=(opts.titleHeight>=10)?opts.titleHeight+20:30}else{opts.titleHeight=0}opts.width=cb.width+2*opts.padding;opts.height=cb.height+opts.titleHeight+2*opts.padding}$.fn.ceebox.overlay(opts);base.action=opts.action;base.onload=opts.onload;base.unload=opts.unload;var pos=boxPos(opts);var animOpts={marginLeft:pos.mleft,marginTop:pos.mtop,width:opts.width+"px",height:opts.height+"px",borderWidth:opts.borderWidth};if(opts.borderColor){var reg=/#[1-90a-f]+/gi;var borderColor=cssParse(opts.borderColor,reg);animOpts=$.extend(animOpts,{borderTopColor:borderColor[0],borderRightColor:borderColor[1],borderBottomColor:borderColor[2],borderLeftColor:borderColor[3]})}animOpts=(opts.textColor)?$.extend(animOpts,{color:opts.textColor}):animOpts;animOpts=(opts.boxColor)?$.extend(animOpts,{backgroundColor:opts.boxColor}):animOpts;$("#cee_box").animate(animOpts,opts.animSpeed,opts.easing,function(){var children=$(this).append(content).children().hide();var len=children.length;var onloadcall=true;children.fadeIn(opts.fadeIn,function(){if($(this).is("#cee_iframeContent")){onloadcall=false}if(onloadcall&&this==children[len-1]){$.fn.ceebox.onload()}});if(opts.modal===true){$("#cee_overlay").removeClass("cee_close")}else{$("<a href='#' id='cee_closeBtn' class='cee_close' title='Close'>close</a>").prependTo("#cee_box");if(opts.gallery){addGallery(opts.gallery,family,opts)}keyEvents(gallery,family,opts.fadeOut)}})};$.fn.ceebox.closebox=function(fade,unload){fade=fade||400;$("#cee_box").fadeOut(fade);$("#cee_overlay").fadeOut((typeof fade=='number')?fade*2:"slow",function(){$('#cee_box,#cee_overlay,#cee_HideSelect,#cee_load').unbind().trigger("unload").remove();if(isFunction(unload)){unload()}else if(isFunction(base.unload)){base.unload()}base.unload=null});document.onkeydown=null};$.fn.ceebox.onload=function(opts){$("#cee_load").hide(300).fadeOut(600,function(){$(this).remove()});if(isFunction(base.action)){base.action();base.action=null}if(isFunction(base.onload)){base.onload();base.onload=null}};var base={};function init(elem,opts,selector){base.vidRegex=function(){var regStr="";$.each($.fn.ceebox.videos,function(i,v){if(v.siteRgx!==null&&typeof v.siteRgx!=='string'){var tmp=String(v.siteRgx);regStr=regStr+tmp.slice(1,tmp.length-2)+"|"}});return new RegExp(regStr+"\\.swf$","i")}();base.userAgent=navigator.userAgent;$(".cee_close").die().live("click",function(){$.fn.ceebox.closebox();return false});if(selector!=false){$(elem).each(function(i){ceeboxLinkSort(this,i,opts,selector)})}$(elem).live("click",function(e){var tgt=$(e.target).closest("[href]");var tgtData=tgt.data("ceebox");if(tgtData){var linkOpts=(tgtData.opts)?$.extend({},opts,tgtData.opts):opts;$.fn.ceebox.overlay(linkOpts);if(tgtData.type=="image"){var imgPreload=new Image();imgPreload.onload=function(){var w=imgPreload.width,h=imgPreload.height;linkOpts.imageWidth=getSmlr(w,$.fn.ceebox.defaults.imageWidth);linkOpts.imageHeight=getSmlr(h,$.fn.ceebox.defaults.imageHeight);linkOpts.imageRatio=w/h;$.fn.ceebox.popup(tgt,$.extend(linkOpts,{type:tgtData.type},{gallery:tgtData.gallery}))};imgPreload.src=$(tgt).attr("href")}else{$.fn.ceebox.popup(tgt,$.extend(linkOpts,{type:tgtData.type},{gallery:tgtData.gallery}))}return false}})}var ceeboxLinkSort=function(parent,parentId,opts,selector){var family,cbLinks=[],galleryLinks=[],gNum=0;($(parent).is("[href]"))?family=$(parent):family=$(parent).find("[href]");var urlMatch={image:function(h,r){if(r&&r.match(/\bimage\b/i)){return true}else{return h.match(/\.jpg$|\.jpeg$|\.png$|\.gif$|\.bmp$/i)||false}},video:function(h,r){if(r&&r.match(/\bvideo\b/i)){return true}else{return h.match(base.vidRegex)||false}},html:function(h){return true}};var familyLen=family.length;family.each(function(i){var alink=this;var metadata=$.metadata?$(alink).metadata():false;var linkOpts=metadata?$.extend({},opts,metadata):opts;$.each(urlMatch,function(type){if(urlMatch[type]($(alink).attr("href"),$(alink).attr("rel"))&&linkOpts[type]){var gallery=false;if(linkOpts[type+"Gallery"]===true){galleryLinks[galleryLinks.length]=i;gallery=true}cbLinks[cbLinks.length]={linkObj:alink,type:type,gallery:gallery,linkOpts:linkOpts};return false}})});var gLen=galleryLinks.length;$.each(cbLinks,function(i){if(cbLinks[i].gallery){var gallery={parentId:parentId,gNum:gNum,gLen:gLen};if(gNum>0){gallery.prevId=galleryLinks[gNum-1]}if(gNum<gLen-1){gallery.nextId=galleryLinks[gNum+1]}gNum++}if(!$.support.opacity&&$(parent).is("map")){$(cbLinks[i].linkObj).click(function(e){e.preventDefault()})}$.data(cbLinks[i].linkObj,"ceebox",{type:cbLinks[i].type,opts:cbLinks[i].linkOpts,gallery:gallery})})};var BoxAttr=function(cblink,o){var w=o[o.type+"Width"];var h=o[o.type+"Height"];var r=o[o.type+"Ratio"]||w/h;var rel=$(cblink).attr("rel");if(rel&&rel!==""){var m={};$.each($.fn.ceebox.relMatch,function(i,v){m[i]=v.exec(rel)});if(m.modal){o.modal=true}if(m.nonmodal){o.modal=false}if(m.width){w=Number(lastItem(m.width))}if(m.height){h=Number(lastItem(m.height))}if(m.ratio){r=lastItem(m.ratio);r=(Number(r))?Number(r):String(r)}if(m.videoSrc){this.videoSrc=String(lastItem(m.videoSrc))}if(m.videoId){this.videoId=String(lastItem(m.videoId))}}var p=pageSize(o.margin);w=getSmlr(w,p.width);h=getSmlr(h,p.height);if(r){if(!Number(r)){r=($.fn.ceebox.ratios[r])?Number($.fn.ceebox.ratios[r]):1}if(w/h>r){w=parseInt(h*r,10)}if(w/h<r){h=parseInt(w/r,10)}}this.modal=o.modal;this.href=$(cblink).attr("href");this.title=$(cblink).attr("title")||cblink.t||"";this.titlebox=(o.titles)?"<div id='cee_title'><h2>"+this.title+"</h2></div>":"";this.width=w;this.height=h;this.rel=rel;this.iPhoneRedirect=o.iPhoneRedirect};var Build={image:function(){this.content="<img id='cee_img' src='"+this.href+"' width='"+this.width+"' height='"+this.height+"' alt='"+this.title+"'/>"+this.titlebox},video:function(){var content="",cb=this;var vid=function(){var rtn=this,id=cb.videoId;rtn.flashvars=rtn.param={};rtn.src=cb.videoSrc||cb.href;rtn.width=cb.width;rtn.height=cb.height;$.each($.fn.ceebox.videos,function(i,v){if(v.siteRgx&&typeof v.siteRgx!='string'&&v.siteRgx.test(cb.href)){if(v.idRgx){v.idRgx=new RegExp(v.idRgx);id=String(lastItem(v.idRgx.exec(cb.href)))}rtn.src=(v.src)?v.src.replace("[id]",id):rtn.src;if(v.flashvars){$.each(v.flashvars,function(ii,vv){if(typeof vv=='string'){rtn.flashvars[ii]=vv.replace("[id]",id)}})}if(v.param){$.each(v.param,function(ii,vv){if(typeof vv=='string'){rtn.param[ii]=vv.replace("[id]",id)}})}rtn.width=v.width||rtn.width;rtn.height=v.height||rtn.height;rtn.site=i;return}});return rtn}();if($.flash.hasVersion(8)){this.width=vid.width;this.height=vid.height;this.action=function(){$('#cee_vid').flash({swf:vid.src,params:$.extend($.fn.ceebox.videos.base.param,vid.param),flashvars:$.extend($.fn.ceebox.videos.base.flashvars,vid.flashvars),width:vid.width,height:vid.height})}}else{this.width=400;this.height=200;if(((base.userAgent.match(/iPhone/i))&&this.iPhoneRedirect)||((base.userAgent.match(/iPod/i))&&this.iPhoneRedirect)){var redirect=this.href;this.action=function(){$.fn.ceebox.closebox(400,function(){window.location=redirect})}}else{vid.site=vid.site||"SWF file";content="<p style='margin:20px'>Adobe Flash 8 or higher is required to view this movie. You can either:</p><ul><li>Follow link to <a href='"+this.href+"'>"+vid.site+" </a></li><li>or <a href='http://www.adobe.com/products/flashplayer/'>Install Flash</a></li><li> or <a href='#' class='cee_close'>Close This Popup</a></li></ul>"}}this.content="<div id='cee_vid' style='width:"+this.width+"px;height:"+this.height+"px;'>"+content+"</div>"+this.titlebox},html:function(){var h=this.href,r=this.rel;var m=[h.match(/[a-zA-Z0-9_\.]+\.[a-zA-Z]{2,4}/i),h.match(/^http:+/),(r)?r.match(/^iframe/):false];if((document.domain==m[0]&&m[1]&&!m[2])||(!m[1]&&!m[2])){var id,ajx=(id=h.match(/#[a-zA-Z0-9_\-]+/))?String(h.split("#")[0]+" "+id):h;this.action=function(){$("#cee_ajax").load(ajx)};this.content=this.titlebox+"<div id='cee_ajax' style='width:"+(this.width-30)+"px;height:"+(this.height-20)+"px'></div>"}else{$("#cee_iframe").remove();this.content=this.titlebox+"<iframe frameborder='0' hspace='0' src='"+h+"' id='cee_iframeContent' name='cee_iframeContent"+Math.round(Math.random()*1000)+"' onload='jQuery.fn.ceebox.onload()' style='width:"+(this.width)+"px;height:"+(this.height)+"px;' > </iframe>"}}};function pageSize(margin){var de=document.documentElement;margin=margin||100;this.width=(window.innerWidth||self.innerWidth||(de&&de.clientWidth)||document.body.clientWidth)-margin;this.height=(window.innerHeight||self.innerHeight||(de&&de.clientHeight)||document.body.clientHeight)-margin;return this}function boxPos(opts){var pos="fixed",scroll=0,reg=/[0-9]+/g,b=cssParse(opts.borderWidth,reg);if(!window.XMLHttpRequest){if($("#cee_HideSelect")===null){$("body").append("<iframe id='cee_HideSelect'></iframe>")}pos="absolute";scroll=parseInt((document.documentElement&&document.documentElement.scrollTop||document.body.scrollTop),10)}this.mleft=parseInt(-1*((opts.width)/2+Number(b[3])),10);this.mtop=parseInt(-1*((opts.height)/2+Number(b[0])),10)+scroll;this.position=pos;return this}function cssParse(css,reg){var temp=css.match(reg),rtn=[],l=temp.length;if(l>1){rtn[0]=temp[0];rtn[1]=temp[1];rtn[2]=(l==2)?temp[0]:temp[2];rtn[3]=(l==4)?temp[3]:temp[1]}else{rtn=[temp,temp,temp,temp]}return rtn}function keyEvents(){document.onkeydown=function(e){e=e||window.event;var kc=e.keyCode||e.which;switch(kc){case 13:return false;case 27:$.fn.ceebox.closebox();document.onkeydown=null;break;case 188:case 37:$("#cee_prev").trigger("click");break;case 190:case 39:$("#cee_next").trigger("click");break;default:break}return true}}function addGallery(g,family,opts){var h=opts.height,w=opts.width,th=opts.titleHeight,p=opts.padding;var nav={image:{w:parseInt(w/2,10),h:h-th-2*p,top:p,bgtop:(h-th-2*p)/2},video:{w:60,h:80,top:parseInt(((h-th-10)-2*p)/2,10),bgtop:24}};nav.html=nav.video;function navLink(btn,id){var s,on=nav[opts.type].bgtop,off=(on-2000),px="px";(btn=="prev")?s=[{left:0},"left"]:s=[{right:0},x="right"];var style=function(y){return $.extend({zIndex:105,width:nav[opts.type].w+px,height:nav[opts.type].h+px,position:"absolute",top:nav[opts.type].top,backgroundPosition:s[1]+" "+y+px},s[0])};$("<a href='#'></a>").text(btn).attr({id:"cee_"+btn}).css(style(off)).hover(function(){$(this).css(style(on))},function(){$(this).css(style(off))}).one("click",function(e){e.preventDefault();(function(f,id,fade){$("#cee_prev,#cee_next").unbind().click(function(){return false});document.onkeydown=null;var content=$("#cee_box").children(),len=content.length;content.fadeOut(fade,function(){$(this).remove();if(this==content[len-1]){f.eq(id).trigger("click")}})})(family,id,opts.fadeOut)}).appendTo("#cee_box")}if(g.prevId>=0){navLink("prev",g.prevId)}if(g.nextId){navLink("next",g.nextId)}$("#cee_title").append("<div id='cee_count'>Item "+(g.gNum+1)+" of "+g.gLen+"</div>")}function getSmlr(a,b){return((a&&a<b)||!b)?a:b}function isFunction(a){return typeof a=='function'}function lastItem(a){var l=a.length;return(l>1)?a[l-1]:a}function debug(a,tag,opts){if(debugging===true){var bugs="",header="[ceebox]("+(tag||"")+")";($.isArray(a)||typeof a=='object'||typeof a=='function')?$.each(a,function(i,val){bugs=bugs+i+":"+val+", "}):bugs=a;if(window.console&&window.console.log){window.console.log(header+bugs)}else{if($("#debug").size()===0){$("<ul id='debug'></ul>").appendTo("body").css({border:"1px solid #ccf",position:"fixed",top:"10px",right:"10px",width:"300px",padding:"10px",listStyle:"square"});$("<li>").css({margin:"0 0 5px"}).appendTo("#debug").append(header).wrapInner("<b></b>").append(" "+bugs)}}}}})(jQuery);
jQuery(function($){ // Document is ready
	debugging = true;		
	//$(".ceebox").ceebox({borderColor:'#dcdcdc',boxColor:"#fff"});	
	$(".ceebox").ceebox({boxColor:'#8ece5b',borderColor:'#dcdcdc',textColor:'#000'});
});
