// jquery.color
(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)];if(result=/rgba\(0, 0, 0, 0\)/.exec(color))
return colors['transparent']
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],transparent:[255,255,255]};})(jQuery);
// fim jquery.color

// jquery.easing.1.3
jQuery.easing['jswing']=jQuery.easing['swing'];jQuery.extend(jQuery.easing,{def:'easeOutQuad',swing:function(x,t,b,c,d){return jQuery.easing[jQuery.easing.def](x,t,b,c,d);},easeInQuad:function(x,t,b,c,d){return c*(t/=d)*t+b;},easeOutQuad:function(x,t,b,c,d){return-c*(t/=d)*(t-2)+b;},easeInOutQuad:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t+b;return-c/2*((--t)*(t-2)-1)+b;},easeInCubic:function(x,t,b,c,d){return c*(t/=d)*t*t+b;},easeOutCubic:function(x,t,b,c,d){return c*((t=t/d-1)*t*t+1)+b;},easeInOutCubic:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t+b;return c/2*((t-=2)*t*t+2)+b;},easeInQuart:function(x,t,b,c,d){return c*(t/=d)*t*t*t+b;},easeOutQuart:function(x,t,b,c,d){return-c*((t=t/d-1)*t*t*t-1)+b;},easeInOutQuart:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t+b;return-c/2*((t-=2)*t*t*t-2)+b;},easeInQuint:function(x,t,b,c,d){return c*(t/=d)*t*t*t*t+b;},easeOutQuint:function(x,t,b,c,d){return c*((t=t/d-1)*t*t*t*t+1)+b;},easeInOutQuint:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t*t+b;return c/2*((t-=2)*t*t*t*t+2)+b;},easeInSine:function(x,t,b,c,d){return-c*Math.cos(t/d*(Math.PI/2))+c+b;},easeOutSine:function(x,t,b,c,d){return c*Math.sin(t/d*(Math.PI/2))+b;},easeInOutSine:function(x,t,b,c,d){return-c/2*(Math.cos(Math.PI*t/d)-1)+b;},easeInExpo:function(x,t,b,c,d){return(t==0)?b:c*Math.pow(2,10*(t/d-1))+b;},easeOutExpo:function(x,t,b,c,d){return(t==d)?b+c:c*(-Math.pow(2,-10*t/d)+1)+b;},easeInOutExpo:function(x,t,b,c,d){if(t==0)return b;if(t==d)return b+c;if((t/=d/2)<1)return c/2*Math.pow(2,10*(t-1))+b;return c/2*(-Math.pow(2,-10*--t)+2)+b;},easeInCirc:function(x,t,b,c,d){return-c*(Math.sqrt(1-(t/=d)*t)-1)+b;},easeOutCirc:function(x,t,b,c,d){return c*Math.sqrt(1-(t=t/d-1)*t)+b;},easeInOutCirc:function(x,t,b,c,d){if((t/=d/2)<1)return-c/2*(Math.sqrt(1-t*t)-1)+b;return c/2*(Math.sqrt(1-(t-=2)*t)+1)+b;},easeInElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);return-(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;},easeOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);return a*Math.pow(2,-10*t)*Math.sin((t*d-s)*(2*Math.PI)/p)+c+b;},easeInOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d/2)==2)return b+c;if(!p)p=d*(.3*1.5);if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);if(t<1)return-.5*(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;return a*Math.pow(2,-10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p)*.5+c+b;},easeInBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*(t/=d)*t*((s+1)*t-s)+b;},easeOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*((t=t/d-1)*t*((s+1)*t+s)+1)+b;},easeInOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;if((t/=d/2)<1)return c/2*(t*t*(((s*=(1.525))+1)*t-s))+b;return c/2*((t-=2)*t*(((s*=(1.525))+1)*t+s)+2)+b;},easeInBounce:function(x,t,b,c,d){return c-jQuery.easing.easeOutBounce(x,d-t,0,c,d)+b;},easeOutBounce:function(x,t,b,c,d){if((t/=d)<(1/2.75)){return c*(7.5625*t*t)+b;}else if(t<(2/2.75)){return c*(7.5625*(t-=(1.5/2.75))*t+.75)+b;}else if(t<(2.5/2.75)){return c*(7.5625*(t-=(2.25/2.75))*t+.9375)+b;}else{return c*(7.5625*(t-=(2.625/2.75))*t+.984375)+b;}},easeInOutBounce:function(x,t,b,c,d){if(t<d/2)return jQuery.easing.easeInBounce(x,t*2,0,c,d)*.5+b;return jQuery.easing.easeOutBounce(x,t*2-d,0,c,d)*.5+c*.5+b;}});
// fim jquery.easing.1.3

// jquery.cycle.pack
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}('(4($){7 m=\'2.22\';7 n=$.1o.1p&&/2k 6.0/.2l(2m.2n);4 Z(){3(1q.1r&&1q.1r.Z)1q.1r.Z(\'[B] \'+2o.2p.2q.2r(2s,\'\'))};$.E.B=4(l){x 8.O(4(){l=l||{};3(l.1P==1Q){2t(l){1s\'2u\':3(8.C)17(8.C);8.C=0;x;1s\'1t\':8.M=1;x;1s\'2v\':8.M=0;x;2w:l={P:l}}}3(8.C)17(8.C);8.C=0;8.M=0;7 c=$(8);7 d=l.1u?$(l.1u,8):c.2x();7 e=d.2y();3(e.q<2){Z(\'2z; 2A 2B 2C: \'+e.q);x}7 f=$.2D({},$.E.B.1R,l||{},$.1S?c.1S():$.2E?c.2F():{});3(f.1v)f.1w=f.1x||e.q;f.H=f.H?[f.H]:[];f.I=f.I?[f.I]:[];f.I.2G(4(){f.1y=0});3(f.U)f.I.11(4(){Q(e,f,0,!f.R)});3(n&&f.18&&!f.1T)1z(d);7 g=8.2H;f.y=19((g.1a(/w:(\\d+)/)||[])[1])||f.y;f.r=19((g.1a(/h:(\\d+)/)||[])[1])||f.r;f.A=19((g.1a(/t:(\\d+)/)||[])[1])||f.A;3(c.D(\'1b\')==\'2I\')c.D(\'1b\',\'2J\');3(f.y)c.y(f.y);3(f.r&&f.r!=\'1c\')c.r(f.r);3(f.V){f.W=[];1U(7 i=0;i<e.q;i++)f.W.11(i);f.W.2K(4(a,b){x 2L.V()-0.5});f.S=0;f.J=f.W[0]}N 3(f.J>=e.q)f.J=0;7 h=f.J||0;d.D({1b:\'1V\',2M:0,2N:0}).2O().O(4(i){7 z=h?i>=h?e.q-(i-h):h-i:e.q-i;$(8).D(\'z-2P\',z)});$(e[h]).D(\'12\',1).1W();3($.1o.1p)e[h].1X.1Y(\'1A\');3(f.K&&f.y)d.y(f.y);3(f.K&&f.r&&f.r!=\'1c\')d.r(f.r);3(f.1t)c.2Q(4(){8.M=1},4(){8.M=0});7 j=$.E.B.1Z[f.P];3($.20(j))j(c,d,f);N 3(f.P!=\'1B\')Z(\'2R 2S: \'+f.P);d.O(4(){7 a=$(8);8.21=(f.K&&f.r)?f.r:a.r();8.23=(f.K&&f.y)?f.y:a.y()});f.T=f.T||{};f.13=f.13||{};f.14=f.14||{};d.24(\':1C(\'+h+\')\').D(f.T);3(f.25)$(d[h]).D(f.25);3(f.A){3(f.G.1P==1Q)f.G={2T:2U,2V:2W}[f.G]||2X;3(!f.1d)f.G=f.G/2;2Y((f.A-f.G)<2Z)f.A+=f.G}3(f.1D)f.1E=f.1F=f.1D;3(!f.1e)f.1e=f.G;3(!f.1f)f.1f=f.G;f.26=e.q;f.L=h;3(f.V){f.9=f.L;3(++f.S==e.q)f.S=0;f.9=f.W[f.S]}N f.9=f.J>=(e.q-1)?0:f.J+1;7 k=d[h];3(f.H.q)f.H[0].1g(k,[k,k,f,27]);3(f.I.q>1)f.I[1].1g(k,[k,k,f,27]);3(f.15&&!f.F)f.F=f.15;3(f.F)$(f.F).1G(\'15\',4(){x 1H(e,f,f.R?-1:1)});3(f.1I)$(f.1I).1G(\'15\',4(){x 1H(e,f,f.R?1:-1)});3(f.X)28(e,f);f.30=4(a){7 b=$(a),s=b[0];3(!f.1x)f.1w++;e.11(s);3(f.29)f.29.11(s);f.26=e.q;b.D(\'1b\',\'1V\').2a(c);3(n&&f.18&&!f.1T)1z(b);3(f.K&&f.y)b.y(f.y);3(f.K&&f.r&&f.r!=\'1c\')d.r(f.r);s.21=(f.K&&f.r)?f.r:b.r();s.23=(f.K&&f.y)?f.y:b.y();b.D(f.T);3(1h f.2b==\'4\')f.2b(b)};3(f.A||f.U)8.C=1J(4(){Q(e,f,0,!f.R)},f.U?10:f.A+(f.2c||0))})};4 Q(a,b,c,d){3(b.1y)x;7 p=a[0].1i,Y=a[b.L],F=a[b.9];3(p.C===0&&!c)x;3(!c&&!p.M&&((b.1v&&(--b.1w<=0))||(b.1j&&!b.V&&b.9<b.L))){3(b.1K)b.1K(b);x}3(c||!p.M){3(b.H.q)$.O(b.H,4(i,o){o.1g(F,[Y,F,b,d])});7 e=4(){3($.1o.1p&&b.18)8.1X.1Y(\'1A\');$.O(b.I,4(i,o){o.1g(F,[Y,F,b,d])})};3(b.9!=b.L){b.1y=1;3(b.1L)b.1L(Y,F,b,e,d);N 3($.20($.E.B[b.P]))$.E.B[b.P](Y,F,b,e);N $.E.B.1B(Y,F,b,e)}3(b.V){b.L=b.9;3(++b.S==a.q)b.S=0;b.9=b.W[b.S]}N{7 f=(b.9+1)==a.q;b.9=f?0:b.9+1;b.L=f?a.q-1:b.9-1}3(b.X)$.E.B.1M(b.X,b.L)}3(b.A&&!b.U)p.C=1J(4(){Q(a,b,0,!b.R)},b.A);N 3(b.U&&p.M)p.C=1J(4(){Q(a,b,0,!b.R)},10)};$.E.B.1M=4(a,b){$(a).31(\'a\').32(\'2d\').1A(\'a:1C(\'+b+\')\').33(\'2d\')};4 1H(a,b,c){7 p=a[0].1i,A=p.C;3(A){17(A);p.C=0}b.9=b.L+c;3(b.9<0){3(b.1j)x 1k;b.9=a.q-1}N 3(b.9>=a.q){3(b.1j)x 1k;b.9=0}3(b.1l&&1h b.1l==\'4\')b.1l(c>0,b.9,a[b.9]);Q(a,b,1,c>=0);x 1k};4 28(b,c){7 d=$(c.X);$.O(b,4(i,o){7 a=(1h c.1N==\'4\')?$(c.1N(i,o)):$(\'<a 34="#">\'+(i+1)+\'</a>\');3(a.35(\'36\').q==0)a.2a(d);a.1G(c.2e,4(){c.9=i;7 p=b[0].1i,A=p.C;3(A){17(A);p.C=0}3(1h c.1O==\'4\')c.1O(c.9,b[c.9]);Q(b,c,1,!c.R);x 1k})});$.E.B.1M(c.X,c.J)};4 1z(b){4 1m(s){7 s=19(s).37(16);x s.q<2?\'0\'+s:s};4 2f(e){1U(;e&&e.38.39()!=\'3a\';e=e.1i){7 v=$.D(e,\'2g-2h\');3(v.3b(\'3c\')>=0){7 a=v.1a(/\\d+/g);x\'#\'+1m(a[0])+1m(a[1])+1m(a[2])}3(v&&v!=\'3d\')x v}x\'#3e\'};b.O(4(){$(8).D(\'2g-2h\',2f(8))})};$.E.B.1B=4(a,b,c,d){7 e=$(a),$n=$(b);$n.D(c.T);7 f=4(){$n.2i(c.13,c.1e,c.1E,d)};e.2i(c.14,c.1f,c.1F,4(){3(c.1n)e.D(c.1n);3(!c.1d)f()});3(c.1d)f()};$.E.B.1Z={2j:4(a,b,c){b.24(\':1C(\'+c.J+\')\').D(\'12\',0);c.H.11(4(){$(8).1W()});c.13={12:1};c.14={12:0};c.T={12:0};c.1n={3f:\'3g\'}}};$.E.B.3h=4(){x m};$.E.B.1R={P:\'2j\',A:3i,U:0,G:3j,1e:u,1f:u,F:u,1I:u,1l:u,X:u,1O:u,2e:\'15\',1N:u,H:u,I:u,1K:u,1D:u,1E:u,1F:u,3k:u,13:u,14:u,T:u,1n:u,1L:u,r:\'1c\',J:0,1d:1,V:0,K:0,1t:0,1v:0,1x:0,2c:0,1u:u,18:0,1j:0}})(3l);',62,208,'|||if|function|||var|this|nextSlide|||||||||||||||||length|height|||null|||return|width||timeout|cycle|cycleTimeout|css|fn|next|speed|before|after|startingSlide|fit|currSlide|cyclePause|else|each|fx|go|rev|randomIndex|cssBefore|continuous|random|randomMap|pager|curr|log||push|opacity|animIn|animOut|click||clearTimeout|cleartype|parseInt|match|position|auto|sync|speedIn|speedOut|apply|typeof|parentNode|nowrap|false|prevNextClick|hex|cssAfter|browser|msie|window|console|case|pause|slideExpr|autostop|countdown|autostopCount|busy|clearTypeFix|filter|custom|eq|easing|easeIn|easeOut|bind|advance|prev|setTimeout|end|fxFn|updateActivePagerLink|pagerAnchorBuilder|pagerClick|constructor|String|defaults|metadata|cleartypeNoBg|for|absolute|show|style|removeAttribute|transitions|isFunction|cycleH||cycleW|not|cssFirst|slideCount|true|buildPager|els|appendTo|onAddSlide|delay|activeSlide|pagerEvent|getBg|background|color|animate|fade|MSIE|test|navigator|userAgent|Array|prototype|join|call|arguments|switch|stop|resume|default|children|get|terminating|too|few|slides|extend|meta|data|unshift|className|static|relative|sort|Math|top|left|hide|index|hover|unknown|transition|slow|600|fast|200|400|while|250|addSlide|find|removeClass|addClass|href|parents|body|toString|nodeName|toLowerCase|html|indexOf|rgb|transparent|ffffff|display|none|ver|4000|1000|shuffle|jQuery'.split('|'),0,{}));
// fim jquery.cycle.pack

// jquery.cycle.lite
;(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);
// fim jquery.cycle.lite

// superfish
;(function($){$.superfish={};$.superfish.o=[];$.superfish.op={};$.superfish.defaults={hoverClass:'sfHover',pathClass:'overideThisToUse',delay:800,animation:{opacity:'show'},speed:'normal',oldJquery:false,disableHI:false,onInit:function(){},onBeforeShow:function(){},onShow:function(){},onHide:function(){}};$.fn.superfish=function(op){var bcClass='sfbreadcrumb',over=function(){var $$=$(this),menu=getMenu($$);getOpts(menu,true);clearTimeout(menu.sfTimer);$$.showSuperfishUl().siblings().hideSuperfishUl();},out=function(){var $$=$(this),menu=getMenu($$);var o=getOpts(menu,true);clearTimeout(menu.sfTimer);if(!$$.is('.'+bcClass)){menu.sfTimer=setTimeout(function(){$$.hideSuperfishUl();if(o.$path.length){over.call(o.$path);}},o.delay);}},getMenu=function($el){return $el.parents('ul.superfish:first')[0];},getOpts=function(el,menuFound){el=menuFound?el:getMenu(el);return $.superfish.op=$.superfish.o[el.serial];},hasUl=function(){return $.superfish.op.oldJquery?'li[ul]':'li:has(ul)';};return this.each(function(){var s=this.serial=$.superfish.o.length;var o=$.extend({},$.superfish.defaults,op);o.$path=$('li.'+o.pathClass,this).each(function(){$(this).addClass(o.hoverClass+' '+bcClass).filter(hasUl()).removeClass(o.pathClass);});$.superfish.o[s]=$.superfish.op=o;$(hasUl(),this)[($.fn.hoverIntent&&!o.disableHI)?'hoverIntent':'hover'](over,out).not('.'+bcClass).hideSuperfishUl();var $a=$('a',this);$a.each(function(i){var $li=$a.eq(i).parents('li');$a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});});o.onInit.call(this);}).addClass('superfish');};$.fn.extend({hideSuperfishUl:function(){var o=$.superfish.op,$ul=$('li.'+o.hoverClass,this).add(this).removeClass(o.hoverClass).find('>ul').hide().css('visibility','hidden');o.onHide.call($ul);return this;},showSuperfishUl:function(){var o=$.superfish.op,$ul=this.addClass(o.hoverClass).find('>ul:hidden').css('visibility','visible');o.onBeforeShow.call($ul);$ul.animate(o.animation,o.speed,function(){o.onShow.call(this);});return this;}});$(window).unload(function(){$('ul.superfish').each(function(){$('li',this).unbind('mouseover','mouseout','mouseenter','mouseleave');});});})(jQuery);
// fim superfish

/**
 * --------------------------------------------------------------------
 * jQuery-Plugin "pngFix"
 * Version: 1.1, 11.09.2007
 * by Andreas Eberhard, andreas.eberhard@gmail.com
 *                      http://jquery.andreaseberhard.de/
 *
 * Copyright (c) 2007 Andreas Eberhard
 * Licensed under GPL (http://www.opensource.org/licenses/gpl-license.php)
 */
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}('(s($){3.1s.1k=s(j){j=3.1a({12:\'1m.1j\'},j);8 k=(n.P=="r 10 Z"&&U(n.v)==4&&n.v.E("14 5.5")!=-1);8 l=(n.P=="r 10 Z"&&U(n.v)==4&&n.v.E("14 6.0")!=-1);o(3.17.16&&(k||l)){3(2).L("1r[@m$=.M]").z(s(){3(2).7(\'q\',3(2).q());3(2).7(\'p\',3(2).p());8 a=\'\';8 b=\'\';8 c=(3(2).7(\'K\'))?\'K="\'+3(2).7(\'K\')+\'" \':\'\';8 d=(3(2).7(\'A\'))?\'A="\'+3(2).7(\'A\')+\'" \':\'\';8 e=(3(2).7(\'C\'))?\'C="\'+3(2).7(\'C\')+\'" \':\'\';8 f=(3(2).7(\'B\'))?\'B="\'+3(2).7(\'B\')+\'" \':\'\';8 g=(3(2).7(\'R\'))?\'1d:\'+3(2).7(\'R\')+\';\':\'\';8 h=(3(2).1c().7(\'1b\'))?\'19:18;\':\'\';o(2.9.y){a+=\'y:\'+2.9.y+\';\';2.9.y=\'\'}o(2.9.t){a+=\'t:\'+2.9.t+\';\';2.9.t=\'\'}o(2.9.w){a+=\'w:\'+2.9.w+\';\';2.9.w=\'\'}8 i=(2.9.15);b+=\'<x \'+c+d+e+f;b+=\'9="13:11;1q-1p:1o-1n;O:W-V;N:1l;\'+g+h;b+=\'q:\'+3(2).q()+\'u;\'+\'p:\'+3(2).p()+\'u;\';b+=\'J:I:H.r.G\'+\'(m=\\\'\'+3(2).7(\'m\')+\'\\\', D=\\\'F\\\');\';b+=i+\'"></x>\';o(a!=\'\'){b=\'<x 9="13:11;O:W-V;\'+a+h+\'q:\'+3(2).q()+\'u;\'+\'p:\'+3(2).p()+\'u;\'+\'">\'+b+\'</x>\'}3(2).1i();3(2).1h(b)});3(2).L("*").z(s(){8 a=3(2).T(\'N-S\');o(a.E(".M")!=-1){8 b=a.X(\'1g("\')[1].X(\'")\')[0];3(2).T(\'N-S\',\'1f\');3(2).Q(0).Y.J="I:H.r.G(m=\'"+b+"\',D=\'F\')"}});3(2).L("1e[@m$=.M]").z(s(){8 a=3(2).7(\'m\');3(2).Q(0).Y.J=\'I:H.r.G\'+\'(m=\\\'\'+a+\'\\\', D=\\\'F\\\');\';3(2).7(\'m\',j.12)})}1t 3}})(3);',62,92,'||this|jQuery||||attr|var|style|||||||||||||src|navigator|if|height|width|Microsoft|function|padding|px|appVersion|margin|span|border|each|class|alt|title|sizingMethod|indexOf|scale|AlphaImageLoader|DXImageTransform|progid|filter|id|find|png|background|display|appName|get|align|image|css|parseInt|block|inline|split|runtimeStyle|Explorer|Internet|relative|blankgif|position|MSIE|cssText|msie|browser|hand|cursor|extend|href|parent|float|input|none|url|after|hide|gif|pngFix|transparent|blank|line|pre|space|white|img|fn|return'.split('|'),0,{}))
