﻿jQuery.easing.jswing=jQuery.easing.swing; jQuery.extend(jQuery.easing,{def:"easeOutQuad",swing:function(e,b,h,d,g){return jQuery.easing[jQuery.easing.def](e,b,h,d,g)},easeInQuad:function(e,b,h,d,g){return d*(b/=g)*b+h},easeOutQuad:function(e,b,h,d,g){return-d*(b/=g)*(b-2)+h},easeInOutQuad:function(e,b,h,d,g){if((b/=g/2)<1)return d/2*b*b+h;return-d/2*(--b*(b-2)-1)+h},easeInCubic:function(e,b,h,d,g){return d*(b/=g)*b*b+h},easeOutCubic:function(e,b,h,d,g){return d*((b=b/g-1)*b*b+1)+h},easeInOutCubic:function(e,b,h,d,g){if((b/=g/2)<1)return d/ 2*b*b*b+h;return d/2*((b-=2)*b*b+2)+h},easeInQuart:function(e,b,h,d,g){return d*(b/=g)*b*b*b+h},easeOutQuart:function(e,b,h,d,g){return-d*((b=b/g-1)*b*b*b-1)+h},easeInOutQuart:function(e,b,h,d,g){if((b/=g/2)<1)return d/2*b*b*b*b+h;return-d/2*((b-=2)*b*b*b-2)+h},easeInQuint:function(e,b,h,d,g){return d*(b/=g)*b*b*b*b+h},easeOutQuint:function(e,b,h,d,g){return d*((b=b/g-1)*b*b*b*b+1)+h},easeInOutQuint:function(e,b,h,d,g){if((b/=g/2)<1)return d/2*b*b*b*b*b+h;return d/2*((b-=2)*b*b*b*b+2)+h},easeInSine:function(e, b,h,d,g){return-d*Math.cos(b/g*(Math.PI/2))+d+h},easeOutSine:function(e,b,h,d,g){return d*Math.sin(b/g*(Math.PI/2))+h},easeInOutSine:function(e,b,h,d,g){return-d/2*(Math.cos(Math.PI*b/g)-1)+h},easeInExpo:function(e,b,h,d,g){return b==0?h:d*Math.pow(2,10*(b/g-1))+h},easeOutExpo:function(e,b,h,d,g){return b==g?h+d:d*(-Math.pow(2,-10*b/g)+1)+h},easeInOutExpo:function(e,b,h,d,g){if(b==0)return h;if(b==g)return h+d;if((b/=g/2)<1)return d/2*Math.pow(2,10*(b-1))+h;return d/2*(-Math.pow(2,-10*--b)+2)+h}, easeInCirc:function(e,b,h,d,g){return-d*(Math.sqrt(1-(b/=g)*b)-1)+h},easeOutCirc:function(e,b,h,d,g){return d*Math.sqrt(1-(b=b/g-1)*b)+h},easeInOutCirc:function(e,b,h,d,g){if((b/=g/2)<1)return-d/2*(Math.sqrt(1-b*b)-1)+h;return d/2*(Math.sqrt(1-(b-=2)*b)+1)+h},easeInElastic:function(e,b,h,d,g){var e=1.70158,i=0,k=d;if(b==0)return h;if((b/=g)==1)return h+d;i||(i=g*0.3);k<Math.abs(d)?(k=d,e=i/4):e=i/(2*Math.PI)*Math.asin(d/k);return-(k*Math.pow(2,10*(b-=1))*Math.sin((b*g-e)*2*Math.PI/i))+h},easeOutElastic:function(e, b,h,d,g){var e=1.70158,i=0,k=d;if(b==0)return h;if((b/=g)==1)return h+d;i||(i=g*0.3);k<Math.abs(d)?(k=d,e=i/4):e=i/(2*Math.PI)*Math.asin(d/k);return k*Math.pow(2,-10*b)*Math.sin((b*g-e)*2*Math.PI/i)+d+h},easeInOutElastic:function(e,b,h,d,g){var e=1.70158,i=0,k=d;if(b==0)return h;if((b/=g/2)==2)return h+d;i||(i=g*0.3*1.5);k<Math.abs(d)?(k=d,e=i/4):e=i/(2*Math.PI)*Math.asin(d/k);if(b<1)return-0.5*k*Math.pow(2,10*(b-=1))*Math.sin((b*g-e)*2*Math.PI/i)+h;return k*Math.pow(2,-10*(b-=1))*Math.sin((b*g-e)* 2*Math.PI/i)*0.5+d+h},easeInBack:function(e,b,h,d,g,i){i==void 0&&(i=1.70158);return d*(b/=g)*b*((i+1)*b-i)+h},easeOutBack:function(e,b,h,d,g,i){i==void 0&&(i=1.70158);return d*((b=b/g-1)*b*((i+1)*b+i)+1)+h},easeInOutBack:function(e,b,h,d,g,i){i==void 0&&(i=1.70158);if((b/=g/2)<1)return d/2*b*b*(((i*=1.525)+1)*b-i)+h;return d/2*((b-=2)*b*(((i*=1.525)+1)*b+i)+2)+h},easeInBounce:function(e,b,h,d,g){return d-jQuery.easing.easeOutBounce(e,g-b,0,d,g)+h},easeOutBounce:function(e,b,h,d,g){return(b/=g)<1/ 2.75?d*7.5625*b*b+h:b<2/2.75?d*(7.5625*(b-=1.5/2.75)*b+0.75)+h:b<2.5/2.75?d*(7.5625*(b-=2.25/2.75)*b+0.9375)+h:d*(7.5625*(b-=2.625/2.75)*b+0.984375)+h},easeInOutBounce:function(e,b,h,d,g){if(b<g/2)return jQuery.easing.easeInBounce(e,b*2,0,d,g)*0.5+h;return jQuery.easing.easeOutBounce(e,b*2-g,0,d,g)*0.5+d*0.5+h}}); (function(e){function b(a){e.fn.cycle.debug&&h(a)}function h(){window.console&&console.log&&console.log("[cycle] "+Array.prototype.join.call(arguments," "))}function d(a,f,b){function d(a,f,b){if(!a&&f===!0){a=e(b).data("cycle.opts");if(!a)return h("options not found, can not resume"),!1;if(b.cycleTimeout)clearTimeout(b.cycleTimeout),b.cycleTimeout=0;n(a.elements,a,1,!a.backwards)}}if(a.cycleStop==void 0)a.cycleStop=0;if(f===void 0||f===null)f={};if(f.constructor==String)switch(f){case "destroy":case "stop":b= e(a).data("cycle.opts");if(!b)return!1;a.cycleStop++;a.cycleTimeout&&clearTimeout(a.cycleTimeout);a.cycleTimeout=0;e(a).removeData("cycle.opts");f=="destroy"&&i(b);return!1;case "toggle":return a.cyclePause=a.cyclePause===1?0:1,d(a.cyclePause,b,a),!1;case "pause":return a.cyclePause=1,!1;case "resume":return a.cyclePause=0,d(!1,b,a),!1;case "prev":case "next":b=e(a).data("cycle.opts");if(!b)return h('options not found, "prev/next" ignored'),!1;e.fn.cycle[f](b);return!1;default:f={fx:f}}else if(f.constructor== Number){var m=f,f=e(a).data("cycle.opts");if(!f)return h("options not found, can not advance slide"),!1;if(m<0||m>=f.elements.length)return h("invalid slide index: "+m),!1;f.nextSlide=m;if(a.cycleTimeout)clearTimeout(a.cycleTimeout),a.cycleTimeout=0;if(typeof b=="string")f.oneTimeFx=b;n(f.elements,f,1,m>=f.currSlide);return!1}return f}function g(a,f){if(!e.support.opacity&&f.cleartype&&a.style.filter)try{a.style.removeAttribute("filter")}catch(b){}}function i(a){a.next&&e(a.next).unbind(a.prevNextEvent); a.prev&&e(a.prev).unbind(a.prevNextEvent);if(a.pager||a.pagerAnchorBuilder)e.each(a.pagerAnchors||[],function(){this.unbind().remove()});a.pagerAnchors=null;a.destroy&&a.destroy(a)}function k(a,f,b,d,m){var c=e.extend({},e.fn.cycle.defaults,d||{},e.metadata?a.metadata():e.meta?a.data():{});if(c.autostop)c.countdown=c.autostopCount||b.length;var l=a[0];a.data("cycle.opts",c);c.$cont=a;c.stopCount=l.cycleStop;c.elements=b;c.before=c.before?[c.before]:[];c.after=c.after?[c.after]:[];!e.support.opacity&& c.cleartype&&c.after.push(function(){g(this,c)});c.continuous&&c.after.push(function(){n(b,c,0,!c.backwards)});x(c);!e.support.opacity&&c.cleartype&&!c.cleartypeNoBg&&w(f);a.css("position")=="static"&&a.css("position","relative");c.width&&a.width(c.width);c.height&&c.height!="auto"&&a.height(c.height);if(c.startingSlide)c.startingSlide=parseInt(c.startingSlide);else if(c.backwards)c.startingSlide=b.length-1;if(c.random){c.randomMap=[];for(l=0;l<b.length;l++)c.randomMap.push(l);c.randomMap.sort(function(){return Math.random()- 0.5});c.randomIndex=1;c.startingSlide=c.randomMap[1]}else if(c.startingSlide>=b.length)c.startingSlide=0;c.currSlide=c.startingSlide||0;var j=c.startingSlide;f.css({position:"absolute",top:0,left:0}).hide().each(function(a){a=c.backwards?j?a<=j?b.length+(a-j):j-a:b.length-a:j?a>=j?b.length-(a-j):j-a:b.length-a;e(this).css("z-index",a)});e(b[j]).css("opacity",1).show();g(b[j],c);c.fit&&c.width&&f.width(c.width);c.fit&&c.height&&c.height!="auto"&&f.height(c.height);if(c.containerResize&&!a.innerHeight()){for(var i= l=0,k=0;k<b.length;k++){var o=e(b[k]),r=o[0],s=o.outerWidth(),t=o.outerHeight();s||(s=r.offsetWidth||r.width||o.attr("width"));t||(t=r.offsetHeight||r.height||o.attr("height"));l=s>l?s:l;i=t>i?t:i}l>0&&i>0&&a.css({width:l+"px",height:i+"px"})}c.pause&&a.hover(function(){this.cyclePause++},function(){this.cyclePause--});if(y(c)===!1)return!1;var q=!1;d.requeueAttempts=d.requeueAttempts||0;f.each(function(){var a=e(this);this.cycleH=c.fit&&c.height?c.height:a.height()||this.offsetHeight||this.height|| a.attr("height")||0;this.cycleW=c.fit&&c.width?c.width:a.width()||this.offsetWidth||this.width||a.attr("width")||0;if(a.is("img")){var a=e.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete,b=e.browser.opera&&(this.cycleW==42&&this.cycleH==19||this.cycleW==37&&this.cycleH==17)&&!this.complete,f=this.cycleH==0&&this.cycleW==0&&!this.complete;if(e.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete||a||b||f)if(m.s&&c.requeueOnImageNotLoaded&&++d.requeueAttempts<100)return h(d.requeueAttempts, " - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH),setTimeout(function(){e(m.s,m.c).cycle(d)},c.requeueTimeout),q=!0,!1;else h("could not determine size of image: "+this.src,this.cycleW,this.cycleH)}return!0});if(q)return!1;c.cssBefore=c.cssBefore||{};c.cssAfter=c.cssAfter||{};c.cssFirst=c.cssFirst||{};c.animIn=c.animIn||{};c.animOut=c.animOut||{};f.not(":eq("+j+")").css(c.cssBefore);e(f[j]).css(c.cssFirst);if(c.timeout){c.timeout=parseInt(c.timeout);if(c.speed.constructor== String)c.speed=e.fx.speeds[c.speed]||parseInt(c.speed);c.sync||(c.speed/=2);for(l=c.fx=="none"?0:c.fx=="shuffle"?500:250;c.timeout-c.speed<l;)c.timeout+=c.speed}if(c.easing)c.easeIn=c.easeOut=c.easing;if(!c.speedIn)c.speedIn=c.speed;if(!c.speedOut)c.speedOut=c.speed;c.slideCount=b.length;c.currSlide=c.lastSlide=j;if(c.random){if(++c.randomIndex==b.length)c.randomIndex=0;c.nextSlide=c.randomMap[c.randomIndex]}else c.nextSlide=c.backwards?c.startingSlide==0?b.length-1:c.startingSlide-1:c.startingSlide>= b.length-1?0:c.startingSlide+1;if(!c.multiFx)if(l=e.fn.cycle.transitions[c.fx],e.isFunction(l))l(a,f,c);else if(c.fx!="custom"&&!c.multiFx)return h("unknown transition: "+c.fx,"; slideshow terminating"),!1;a=f[j];c.before.length&&c.before[0].apply(a,[a,a,c,!0]);c.after.length&&c.after[0].apply(a,[a,a,c,!0]);c.next&&e(c.next).bind(c.prevNextEvent,function(){return u(c,1)});c.prev&&e(c.prev).bind(c.prevNextEvent,function(){return u(c,0)});(c.pager||c.pagerAnchorBuilder)&&z(b,c);A(c,b);return c}function x(a){a.original= {before:[],after:[]};a.original.cssBefore=e.extend({},a.cssBefore);a.original.cssAfter=e.extend({},a.cssAfter);a.original.animIn=e.extend({},a.animIn);a.original.animOut=e.extend({},a.animOut);e.each(a.before,function(){a.original.before.push(this)});e.each(a.after,function(){a.original.after.push(this)})}function y(a){var f,d,g=e.fn.cycle.transitions;if(a.fx.indexOf(",")>0){a.multiFx=!0;a.fxs=a.fx.replace(/\s*/g,"").split(",");for(f=0;f<a.fxs.length;f++){var m=a.fxs[f];d=g[m];if(!d||!g.hasOwnProperty(m)|| !e.isFunction(d))h("discarding unknown transition: ",m),a.fxs.splice(f,1),f--}if(!a.fxs.length)return h("No valid transitions named; slideshow terminating."),!1}else if(a.fx=="all")for(p in a.multiFx=!0,a.fxs=[],g)d=g[p],g.hasOwnProperty(p)&&e.isFunction(d)&&a.fxs.push(p);if(a.multiFx&&a.randomizeEffects){d=Math.floor(Math.random()*20)+30;for(f=0;f<d;f++)a.fxs.push(a.fxs.splice(Math.floor(Math.random()*a.fxs.length),1)[0]);b("randomized fx sequence: ",a.fxs)}return!0}function A(a,b){a.addSlide=function(d, h){var g=e(d),c=g[0];a.autostopCount||a.countdown++;b[h?"unshift":"push"](c);if(a.els)a.els[h?"unshift":"push"](c);a.slideCount=b.length;g.css("position","absolute");g[h?"prependTo":"appendTo"](a.$cont);h&&(a.currSlide++,a.nextSlide++);!e.support.opacity&&a.cleartype&&!a.cleartypeNoBg&&w(g);a.fit&&a.width&&g.width(a.width);a.fit&&a.height&&a.height!="auto"&&g.height(a.height);c.cycleH=a.fit&&a.height?a.height:g.height();c.cycleW=a.fit&&a.width?a.width:g.width();g.css(a.cssBefore);(a.pager||a.pagerAnchorBuilder)&& e.fn.cycle.createPagerAnchor(b.length-1,c,e(a.pager),b,a);if(e.isFunction(a.onAddSlide))a.onAddSlide(g);else g.hide()}}function n(a,f,d,h){if(d&&f.busy&&f.manualTrump)b("manualTrump in go(), stopping active transition"),e(a).stop(!0,!0),f.busy=0;if(f.busy)b("transition active, ignoring new tx request");else{var g=f.$cont[0],c=a[f.currSlide],i=a[f.nextSlide];if(!(g.cycleStop!=f.stopCount||g.cycleTimeout===0&&!d))if(!d&&!g.cyclePause&&!f.bounce&&(f.autostop&&--f.countdown<=0||f.nowrap&&!f.random&&f.nextSlide< f.currSlide))f.end&&f.end(f);else{var j=!1;if((d||!g.cyclePause)&&f.nextSlide!=f.currSlide){var j=!0,k=f.fx;c.cycleH=c.cycleH||e(c).height();c.cycleW=c.cycleW||e(c).width();i.cycleH=i.cycleH||e(i).height();i.cycleW=i.cycleW||e(i).width();if(f.multiFx){if(f.lastFx==void 0||++f.lastFx>=f.fxs.length)f.lastFx=0;k=f.fxs[f.lastFx];f.currFx=k}if(f.oneTimeFx)k=f.oneTimeFx,f.oneTimeFx=null;e.fn.cycle.resetState(f,k);f.before.length&&e.each(f.before,function(a,b){g.cycleStop==f.stopCount&&b.apply(i,[c,i,f, h])});var v=function(){f.busy=0;e.each(f.after,function(a,b){g.cycleStop==f.stopCount&&b.apply(i,[c,i,f,h])})};b("tx firing("+k+"); currSlide: "+f.currSlide+"; nextSlide: "+f.nextSlide);f.busy=1;if(f.fxFn)f.fxFn(c,i,f,v,h,d&&f.fastOnEvent);else if(e.isFunction(e.fn.cycle[f.fx]))e.fn.cycle[f.fx](c,i,f,v,h,d&&f.fastOnEvent);else e.fn.cycle.custom(c,i,f,v,h,d&&f.fastOnEvent)}if(j||f.nextSlide==f.currSlide)if(f.lastSlide=f.currSlide,f.random){f.currSlide=f.nextSlide;if(++f.randomIndex==a.length)f.randomIndex= 0;f.nextSlide=f.randomMap[f.randomIndex];if(f.nextSlide==f.currSlide)f.nextSlide=f.currSlide==f.slideCount-1?0:f.currSlide+1}else f.backwards?(d=f.nextSlide-1<0)&&f.bounce?(f.backwards=!f.backwards,f.nextSlide=1,f.currSlide=0):(f.nextSlide=d?a.length-1:f.nextSlide-1,f.currSlide=d?0:f.nextSlide+1):(d=f.nextSlide+1==a.length)&&f.bounce?(f.backwards=!f.backwards,f.nextSlide=a.length-2,f.currSlide=a.length-1):(f.nextSlide=d?0:f.nextSlide+1,f.currSlide=d?a.length-1:f.nextSlide-1);j&&f.pager&&f.updateActivePagerLink(f.pager, f.currSlide,f.activePagerClass);j=0;f.timeout&&!f.continuous?j=q(a[f.currSlide],a[f.nextSlide],f,h):f.continuous&&g.cyclePause&&(j=10);if(j>0)g.cycleTimeout=setTimeout(function(){n(a,f,0,!f.backwards)},j)}}}function q(a,f,e,d){if(e.timeoutFn){for(a=e.timeoutFn.call(a,a,f,e,d);e.fx!="none"&&a-e.speed<250;)a+=e.speed;b("calculated timeout: "+a+"; speed: "+e.speed);if(a!==!1)return a}return e.timeout}function u(a,b){var d=b?1:-1,h=a.elements,g=a.$cont[0],c=g.cycleTimeout;if(c)clearTimeout(c),g.cycleTimeout= 0;if(a.random&&d<0){a.randomIndex--;if(--a.randomIndex==-2)a.randomIndex=h.length-2;else if(a.randomIndex==-1)a.randomIndex=h.length-1;a.nextSlide=a.randomMap[a.randomIndex]}else if(a.random)a.nextSlide=a.randomMap[a.randomIndex];else if(a.nextSlide=a.currSlide+d,a.nextSlide<0){if(a.nowrap)return!1;a.nextSlide=h.length-1}else if(a.nextSlide>=h.length){if(a.nowrap)return!1;a.nextSlide=0}g=a.onPrevNextEvent||a.prevNextClick;e.isFunction(g)&&g(d>0,a.nextSlide,h[a.nextSlide]);n(h,a,1,b);return!1}function z(a, b){var d=e(b.pager);e.each(a,function(h,g){e.fn.cycle.createPagerAnchor(h,g,d,a,b)});b.updateActivePagerLink(b.pager,b.startingSlide,b.activePagerClass)}function w(a){function f(a){a=parseInt(a).toString(16);return a.length<2?"0"+a:a}function d(a){for(;a&&a.nodeName.toLowerCase()!="html";a=a.parentNode){var b=e.css(a,"background-color");if(b&&b.indexOf("rgb")>=0)return a=b.match(/\d+/g),"#"+f(a[0])+f(a[1])+f(a[2]);if(b&&b!="transparent")return b}return"#ffffff"}b("applying clearType background-color hack"); a.each(function(){e(this).css("background-color",d(this))})}if(e.support==void 0)e.support={opacity:!e.browser.msie};e.expr[":"].paused=function(a){return a.cyclePause};e.fn.cycle=function(a,f){var g={s:this.selector,c:this.context};if(this.length===0&&a!="stop"){if(!e.isReady&&g.s)return h("DOM not ready, queuing slideshow"),e(function(){e(g.s,g.c).cycle(a,f)}),this;h("terminating; zero elements found by selector"+(e.isReady?"":" (DOM not ready)"));return this}return this.each(function(){var i=d(this, a,f);if(i!==!1){i.updateActivePagerLink=i.updateActivePagerLink||e.fn.cycle.updateActivePagerLink;this.cycleTimeout&&clearTimeout(this.cycleTimeout);this.cycleTimeout=this.cyclePause=0;var m=e(this),c=i.slideExpr?e(i.slideExpr,this):m.children(),l=c.get();if(l.length<2)h("terminating; too few slides: "+l.length);else{var j=k(m,c,l,i,g);if(j!==!1&&(m=j.continuous?10:q(l[j.currSlide],l[j.nextSlide],j,!j.backwards)))m+=j.delay||0,m<10&&(m=10),b("first timeout: "+m),this.cycleTimeout=setTimeout(function(){n(l, j,0,!i.backwards)},m)}}})};e.fn.cycle.resetState=function(a,b){b=b||a.fx;a.before=[];a.after=[];a.cssBefore=e.extend({},a.original.cssBefore);a.cssAfter=e.extend({},a.original.cssAfter);a.animIn=e.extend({},a.original.animIn);a.animOut=e.extend({},a.original.animOut);a.fxFn=null;e.each(a.original.before,function(){a.before.push(this)});e.each(a.original.after,function(){a.after.push(this)});var d=e.fn.cycle.transitions[b];e.isFunction(d)&&d(a.$cont,e(a.elements),a)};e.fn.cycle.updateActivePagerLink= function(a,b,d){e(a).each(function(){e(this).children().removeClass(d).eq(b).addClass(d)})};e.fn.cycle.next=function(a){u(a,1)};e.fn.cycle.prev=function(a){u(a,0)};e.fn.cycle.createPagerAnchor=function(a,f,d,h,g){e.isFunction(g.pagerAnchorBuilder)?(f=g.pagerAnchorBuilder(a,f),b("pagerAnchorBuilder("+a+", el) returned: "+f)):f='<a href="#">'+(a+1)+"</a>";if(f){var c=e(f);if(c.parents("body").length===0){var i=[];d.length>1?(d.each(function(){var a=c.clone(!0);e(this).append(a);i.push(a[0])}),c=e(i)): c.appendTo(d)}g.pagerAnchors=g.pagerAnchors||[];g.pagerAnchors.push(c);c.bind(g.pagerEvent,function(b){b.preventDefault();g.nextSlide=a;var b=g.$cont[0],c=b.cycleTimeout;if(c)clearTimeout(c),b.cycleTimeout=0;b=g.onPagerEvent||g.pagerClick;e.isFunction(b)&&b(g.nextSlide,h[g.nextSlide]);n(h,g,1,g.currSlide<a)});!/^click/.test(g.pagerEvent)&&!g.allowPagerClickBubble&&c.bind("click.cycle",function(){return!1});g.pauseOnPagerHover&&c.hover(function(){g.$cont[0].cyclePause++},function(){g.$cont[0].cyclePause--})}}; e.fn.cycle.hopsFromLast=function(a,b){var e=a.lastSlide,d=a.currSlide;return b?d>e?d-e:a.slideCount-e:d<e?e-d:e+a.slideCount-d};e.fn.cycle.commonReset=function(a,b,d,g,h,c){e(d.elements).not(a).hide();if(typeof d.cssBefore.opacity=="undefined")d.cssBefore.opacity=1;d.cssBefore.display="block";if(d.slideResize&&g!==!1&&b.cycleW>0)d.cssBefore.width=b.cycleW;if(d.slideResize&&h!==!1&&b.cycleH>0)d.cssBefore.height=b.cycleH;d.cssAfter=d.cssAfter||{};d.cssAfter.display="none";e(a).css("zIndex",d.slideCount+ (c===!0?1:0));e(b).css("zIndex",d.slideCount+(c===!0?0:1))};e.fn.cycle.custom=function(a,b,d,g,h,c){var i=e(a),j=e(b),k=d.speedIn,a=d.speedOut,n=d.easeIn,b=d.easeOut;j.css(d.cssBefore);c&&(k=typeof c=="number"?a=c:a=1,n=b=null);var o=function(){j.animate(d.animIn,k,n,function(){g()})};i.animate(d.animOut,a,b,function(){i.css(d.cssAfter);d.sync||o()});d.sync&&o()};e.fn.cycle.transitions={fade:function(a,b,d){b.not(":eq("+d.currSlide+")").css("opacity",0);d.before.push(function(a,b,c){e.fn.cycle.commonReset(a, b,c);c.cssBefore.opacity=0});d.animIn={opacity:1};d.animOut={opacity:0};d.cssBefore={top:0,left:0}}};e.fn.cycle.ver=function(){return"2.99"};e.fn.cycle.defaults={activePagerClass:"activeSlide",after:null,allowPagerClickBubble:!1,animIn:null,animOut:null,autostop:0,autostopCount:0,backwards:!1,before:null,cleartype:!e.support.opacity,cleartypeNoBg:!1,containerResize:1,continuous:0,cssAfter:null,cssBefore:null,delay:0,easeIn:null,easeOut:null,easing:null,end:null,fastOnEvent:0,fit:0,fx:"fade",fxFn:null, height:"auto",manualTrump:!0,next:null,nowrap:0,onPagerEvent:null,onPrevNextEvent:null,pager:null,pagerAnchorBuilder:null,pagerEvent:"click.cycle",pause:0,pauseOnPagerHover:0,prev:null,prevNextEvent:"click.cycle",random:0,randomizeEffects:1,requeueOnImageNotLoaded:!0,requeueTimeout:250,rev:0,shuffle:null,slideExpr:null,slideResize:1,speed:1E3,speedIn:null,speedOut:null,startingSlide:0,sync:1,timeout:4E3,timeoutFn:null,updateActivePagerLink:null}})(jQuery);
