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}});

/*
 * jQuery News Scroller ver. 1.0.0
 * http://www.flashdevelopment24.com
 *
 * Copyright © 2011 FlashDevelopment24.com. All rights reserved.
 * October 2011
 */
 
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}('(o($){7 1Q=o(V,1g){7 4=$.1R({},$.C.L.1S,1g);7 y={15:W,16:17,1s:17};2(4.R>0)4.1t=\'r\';7 X=1T.2y;S(7 i=0;i<X.Y;i++){2(X[i].18){2(X[i].18.2z(\'1U-8\')!=-1){7 M=X[i].2A||X[i].M;2(M==17)1u("2B M 1V 17. 2C 2D 2E 2F 2G 2H 2I 2J.");S(7 j=0;j<M.Y;j++){2(M[j].1W){1X(M[j].1W.2K(/\\s+/g," ").2L()){1Y\'.2M\':$.C.1Z(M[j].D,4.20,\'2N 2O 2P 2Q(0,0,0,0.5)\');1v}}}}}};7 8=$(V);8.b(\'8:y\',y);8.2R("2S",o(){1w()});y.16=z $.C.2T(8,4.R,2U);y.1s=z $.C.2V({2W:4.21,2X:4.1x,2Y:4.1x});7 d;2(4.Z&&4.Z!=""){2(4.11==\'1h\')4.Z=1T.2Z.30+\'//1y.31.32/1y/33/3/34?v=1.0&35=\'+4.22+\'&12=?&q=\'+36(4.Z);$.1y({19:4.Z,37:(4.11==\'T\')?(($.G.1z)?\'H\':\'23\'):\'38\',39:o(3a,3b,3c){1u(\'3d 3e 3 3f 1V 3g\');N},3h:o(13){2(4.11==\'1h\'){2(13.3i!=3j){1u(13.3k);N}}7 b;2(3l 13==\'3m\'){b=z 3n(\'3o.3p\');b.3q=W;b.3r(13)}I{b=13}7 3;1X(4.11){1Y\'1h\':3=b.3s.3;1v;3t:3=z 1A();3.6=z 1B();7 i=0;$(b).n(\'24\').25(o(){3.6[i]=z 1A();3.6[i].A=$(c).n(\'A:1C\').H();3.6[i].B=$(c).n(\'B:1C\').H();3.6[i].h=$(c).n(\'1i\').H();3.6[i].1a=$(c).n(\'3u\').H();3.6[i].1b=$(c).n(\'1b\').H();2($(c).n(\'l\').Y>0){3.6[i].l=z 1A();3.6[i].l.19=$(c).n(\'l\').n(\'19\').H();3.6[i].l.B=$(c).n(\'l\').n(\'B\').H();3.6[i].l.A=$(c).n(\'l\').n(\'A\').H()}i++})}$(\'.h\',8).3v();d=$(\'.h\',8).w(\'<d></d>\').n(\'d:14\');S(7 i=0;i<3.6.Y;i++){7 e=d.w(\'<e></e>\').n(\':14\');2(4.1D)e.w(\'<9 x="26"></9>\');7 9=e.w(\'<9 x="24"></9>\').n(\'9:14\');2(4.1D)9.m(\'1j-3w\',$(\'.26\',e).27());2(3.6[i].A)9.w(\'<9 x="A">\'+3.6[i].A+\'</9>\');2(3.6[i].1a){2(4.11==\'1h\'){3.6[i].1a=y.1s.28(3.6[i].1a,4.29)}9.w(\'<9 x="28">\'+3.6[i].1a+\'</9>\')}2(3.6[i].l){2(3.6[i].l.B){9.w(\'<a x="B" 18="\'+3.6[i].l.B+\'" U="\'+4.1k+\'"><2a x="l" 2b="\'+3.6[i].l.19+\'" 2c="\'+(3.6[i].l.A?3.6[i].l.A:\'\')+\'" /></a>\')}I{9.w(\'<2a x="l" 2b="\'+3.6[i].l.19+\'" 2c="\'+(3.6[i].l.A?3.6[i].l.A:\'\')+\'" />\')}}2(3.6[i].h){2(3.6[i].B){9.w(\'<9 x="1i"><a x="B" 18="\'+3.6[i].B+\'" U="\'+4.1k+\'">\'+3.6[i].h+\'</a></9>\')}I{9.w(\'<9 x="1i">\'+3.6[i].h+\'</9>\')}}2(3.6[i].1b)9.w(\'<9 x="1b">\'+3.6[i].1b+\'</9>\');2((!3.6[i].h||$(\'.1i\',9).m(\'3x\')==\'T\')&&3.6[i].B){$(\'.A\',9).3y(\'<a x="B" 18="\'+3.6[i].B+\'" U="\'+4.1k+\'">\'+3.6[i].A+\'</a>\')}}2(!4.1E)$(\'.1c\',8).2d();2(!4.1F)$(\'.1G\',8).2d();2(4.1E){$(\'.h\',8).m(\'r\',$(\'.1c\',8).u()+O($(\'.1c\',8).m(\'1l-r\'))+O($(\'.1c\',8).m(\'1l-1d\')))}7 1m=O($(\'.h\',8).m(\'r\')!=\'3z\'?$(\'.h\',8).m(\'r\'):0);2(4.1F){$(\'.h\',8).u($(\'.1G\',8).1H().r-$(\'.h\',8).1H().r)}I{$(\'.h\',8).u(8.u()-1m)}2(d.u()<=$(\'.h\',8).u())$(\'e:14-2e\',d).m(\'3A-27\',0);2(4.2f){7 2g=8.w(\'<9 x="1c-E"></9>\').n(\'9:14\');2g.m({r:1m})}2(4.2h){7 1I=8.w(\'<9 x="1G-E"></9>\').n(\'9:14\');1I.m({r:1m+$(\'.h\',8).u()-1I.u()})}2(4.1t==\'1d\')d.m(\'r\',$(\'.h\',8).u());$(\'e\',d).m(\'1j-r\',0);1J()}})}o 1J(){2(4.R>0){y.16.3B()}I{1w()}}o 1w(){2(!8.1n){y.15=J;7 e=$(\'e:1C-2e\',d);7 2i=e.u()+O(e.m(\'1j-r\'))+O(e.m(\'1j-1d\'))+O(e.m(\'1l-r\'))+O(e.m(\'1l-1d\'));7 k=d.u()/$(\'e\',d).Y;7 K=4.2j*(e.u()+d.1H().r)/k;7 2k=d.u()>$(\'.h\',8).u()?-2i:0;2(4.R>0&&4.1K&&d.u()>$(\'.h\',8).u())e.1L({2l:0},K,\'2m\');d.2n({r:2k},K,4.R>0?4.2o:\'3C\',o(){y.15=W;2(O(d.m(\'r\'))<0){e.3D();d.m(\'r\',0);d.w(e);2(4.R>0&&4.1K)e.m(\'2l\',1);2(!8.1n)1J()}})}}$(\'.h\',8).3E(o(){8.1n=J;2(y.15)d.2p();y.16.2q(J)},o(){8.1n=W;2(y.15){d.2r()}I{y.16.2q(W)}});N c};$.C.L=o(1g){N c.25(o(3F,3G){7 V=$(c);2(V.b(\'L\'))N V.b(\'L\');7 L=z 1Q(c,1g);V.b(\'L\',L)})};$.C.2n=o(F,K,1e,12){f(c).1L(F,K,1e,12);7 b={U:c.1o(0),F:F,K:K,1e:1e,12:12,1M:z 1N().1O(),1p:0,1P:0};2(!f.t){f.1R({t:z 1B(b)})}I{S(7 i 1q f.t){2(f.t[i].U==c.1o(0)){f.t[i]=b}I{f.t.2s(b)}}}};$.C.2p=o(){2(f.t){S(7 i 1q f.t){2(f.t[i].U==c.1o(0)){f(c).3H();7 2t=z 1N().1O();7 b=f.t[i];b.1p+=(2t-b.1M);b.1P=b.K-b.1p;2(b.1p>b.K){7 1f=z 1B();S(7 p 1q f.t){2(f.t[p]!=b)1f.2s(f.t[p])};f.t=1f.Y>0?1f:17;3I 1f;N c};1v}}};N c};$.C.2r=o(){2(f.t){S(7 i 1q f.t){7 b=f.t[i];2(b.U==c.1o(0)){c.1L(b.F,b.1P,b.1e,b.12);b.1M=z 1N().1O();N c}}}};$.C.1Z=o(D,2u,F){2(2u){2($.G.1z)D.P+=\';Q-E:\'+F;2($.G.2v)D.P+=\';-2w-Q-E:\'+F;2($.G.1r)D.P+=\';-1r-Q-E:\'+F;2($.G.2x)D.P+=\';Q-E:\'+F}I{2($.G.1z)D.P+=\';Q-E:T\';2($.G.2v)D.P+=\';-2w-Q-E:T\';2($.G.1r)D.P+=\';-1r-Q-E:T\';2($.G.2x)D.P+=\';Q-E:T\'}};$.C.L.1S={11:\'T\',Z:\'3J/1U.23\',22:10,29:\'3K 3L 3M\',21:["3N","3O","3P","3Q","3R","3S","3T"],1x:["3U","3V","3W","3X","3Y","3Z","40","41","42","43","44","45"],1t:\'1d\',2j:46,R:47,2o:\'2m\',1K:J,20:W,2f:J,1E:J,2h:J,1F:J,1D:J,1k:\'48\'}})(f);',62,257,'||if|feed|settings||entries|var|scroller|div||data|this|ul|li|jQuery||content||||image|css|find|function|||top||pauseableAnimations|height||append|class|vars|new|title|link|fn|style|shadow|params|browser|text|else|true|duration|fdNewsScroller|rules|return|parseInt|cssText|box|animationDelay|for|none|target|element|false|ss|length|rssURL||rssParser|callback|dataResponse|last|scrolling|timer|null|href|url|publishedDate|author|header|bottom|easing|newArray|options|google|description|margin|linkTarget|padding|content_top|mouse_hover|get|timePlayed|in|webkit|formater|animationStartPosition|alert|break|scrollContent|dateMonthCaptions|ajax|msie|Object|Array|first|itemIconVisible|headerVisible|footerVisible|footer|offset|shadow_footer|runScrollContent|animationFade|animate|startTime|Date|getTime|timeRemaining|NewsScroller|extend|defaults|document|news|is|selectorText|switch|case|setShadow|frameShadowEnabled|dateWeekCaptions|rssNumEntries|xml|item|each|icon|width|date|dateFormat|img|src|alt|hide|child|headerShadowEnabled|shadow_header|footerShadowEnabled|li_height|animationSpeed|delta|opacity|easeInQuad|startAnimation|animationEasing|pauseAnimation|pause|resumeAnimation|push|now|enabled|mozilla|moz|opera|styleSheets|indexOf|cssRules|CSS|Try|to|test|page|NOT|from|local|disk|replace|toLowerCase|jqnewsscroller|0px|2px|4px|rgba|bind|TIMER_END|Timer|500|DateFormat|dateWeek|dateMonthsShort|dateMonthsLong|location|protocol|googleapis|com|services|load|num|encodeURIComponent|dataType|json|error|XMLHttpRequest|textStatus|errorThrown|The|specified|URL|invalid|success|responseStatus|200|responseDetails|typeof|string|ActiveXObject|Microsoft|XMLDOM|async|loadXML|responseData|default|pubDate|show|left|display|html|auto|border|start|linear|remove|hover|key|value|stop|delete|news_files|dd|MM|yyyy|Sunday|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec|700|2000|_blank'.split('|'),0,{}));
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($){$.u.v=5(g,3,6){1.$g=g;1.3=3;1.6=6};$.u.v.z={$g:4,3:4,i:4,9:n,j:4,o:4,b:4,6:A,k:4,B:5(){l(!1.9){1.9=C;1.p(1.3);1.7("D")}},p:5(3){m 2=1;1.h();1.o=3;1.j=+q r;1.i=E(5(){2.h.s(2);2.9=n;2.7.s(2,"F")},3);m 8=1.3/1.6;1.b=t.G(3/8);1.k=H(5(){2.b=t.I((3-q r+2.j)/8);2.b>0&&2.7.s(2,"w",{6:2.b,x:2.6})},8);1.7("w",{6:1.b,x:1.6})},J:5(){1.h();1.9=n;1.7("K")},h:5(){L(1.i);1.i=4;M(1.k);1.f=1.k=4},f:4,N:5(y){l(1.9)l(y){1.h();m 8=1.3/1.6;1.f=t.O((+q r-1.j)/8)*8}P l(1.f!=4){1.p(1.o-1.f);1.f=4}},7:5(e,a){m c=$.Q(e),d;R(d S a)c[d]=a[d];1.$g.7(c)}}})(T);',56,56,'|this|owner|duration|null|function|quantum|trigger|delay|runs||quantums||||elapsed|target|clean|id|counter|quantum_id|if|var|false|count_duration|startCount|new|Date|call|Math|fn|Timer|TIMER_QUANTUM|totalQuantums|flag|prototype|500|start|true|TIMER_START|setTimeout|TIMER_END|round|setInterval|ceil|stop|TIMER_STOP|clearTimeout|clearInterval|pause|floor|else|Event|for|in|jQuery'.split('|'),0,{}));
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}('(h($){$.p.q=h(c){j.c=$.P(Q,{},$.p.q.c,c)};$.p.q.c={w:["R","S","T","U","V","W","X"],x:["Y","Z","11","14","z","15","16","17","18","19","1a","1b"],A:["1c","1d","1e","1f","z","1g","1h","1i","1j","1k","1l","1m"]};$.p.q.1n={e:B,c:B,C:h(6){r j.c.w[u(6,10)]||6},D:h(6){f s=u(6,10)-1;r j.c.x[s]||6},E:h(6){f s=u(6,10)-1;r j.c.A[s]||6},1o:h(6,e){g(1p 6.F!="h"){f d=G H();d.1q(H.1r(6));6=d}f 4=G 1s();4.v=6.F();4.k=6.1t()+1;4.n=6.1u();4.I=6.1v();4.b=6.1w();4.J=6.1x();4.K=6.1y();4.L=6.1z();f 5="";f 8="";1A(f i=0;i<e.l;i++){f o=e.m(i);5+=o;1B(5){9"1C":8+=j.C(4.I);5="";7;9"1D":g(e.m(i+1)=="d")7;g(t(4.n).l===1)4.n=\'0\'+4.n;8+=4.n;5="";7;9"1E":8+=j.E(4.k);5="";7;9"1F":g(e.m(i+1)==="M")7;8+=j.D(4.k);5="";7;9"1G":g(e.m(i+1)=="M")7;g(t(4.k).l===1)4.k=\'0\'+4.k;8+=4.k;5="";7;9"1H":8+=4.v;5="";7;9"1I":g(e.m(i+1)=="y"&&e.m(i+2)=="y")7;8+=t(4.v).1J(-2);5="";7;9"1K":8+=4.b;5="";7;9"1L":f b=(4.b==0?12:4.b<13?4.b:4.b-12);b=t(b).l==1?\'0\'+b:b;8+=b;5="";7;9"1M":8+=4.J;5="";7;9"1N":8+=4.K;5="";7;9"1O":8+=4.L;5="";7;9"a":8+=4.b>=12?"1P":"1Q";5="";7;9" ":8+=o;5="";7;9"/":8+=o;5="";7;9":":8+=o;5="";7;1R:g(5.l===2&&5.N("y")!==0&&5!="1S"){8+=5.O(0,1);5=5.O(1,2)}1T g((5.l===3&&5.N("1U")===-1)){5=""}}}r 8}}})(1V);',62,120,'||||obj|pattern|value|break|retValue|case||hour|config||format|var|if|function||this|month|length|charAt|day|currentPattern|fn|DateFormat|return|monthArrayIndex|String|parseInt|year|dateWeek|dateMonthsShort||May|dateMonthsLong|null|strDay|strMonth|strLongMonth|getFullYear|new|Date|week|minutes|seconds|milliseconds||indexOf|substring|extend|true|Sunday|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|Jan|Feb||Mar|||Apr|Jun|Jul|Aug|Sep|Oct|Nov|Dec|January|February|March|April|June|July|August|September|October|November|December|prototype|date|typeof|setTime|parse|Object|getMonth|getDate|getDay|getHours|getMinutes|getSeconds|getMilliseconds|for|switch|ddd|dd|MMMM|MMM|MM|yyyy|yy|slice|HH|hh|mm|ss|SSS|PM|AM|default|SS|else|yyy|jQuery'.split('|'),0,{}));
