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}('(n($){9 1I=n(Q,1b){9 4=$.2q({},$.z.H.1J,1b);9 u={Y:R,Z:11,1m:11};2(4.M>0)4.1n=\'o\';9 S=1K.2r;1o(9 i=0;i<S.12;i++){2(S[i].13){2(S[i].13.2s(\'1L-7\')!=-1){9 I=S[i].2t||S[i].I;2(I==11)1p("2u I 1M 11. 2v 2w 2x 2y 2z 2A 2B 2C.");1o(9 j=0;j<I.12;j++){2(I[j].1N){1O(I[j].1N.2D(/\\s+/g," ").2E()){1P\'.2F\':$.z.1Q(I[j].A,4.1R,\'2G 2H 2I 2J(0,0,0,0.5)\');1S}}}}}};9 7=$(Q);7.b(\'7:u\',u);7.2K("2L",n(){1q()});u.Z=y $.z.2M(7,4.M,2N);u.1m=y $.z.2O({2P:4.1T,2Q:4.1r,2R:4.1r});9 d;2(4.T&&4.T!=""){2(4.U==\'1c\')4.T=1K.2S.2T+\'//1s.2U.2V/1s/2W/3/2X?v=1.0&2Y=\'+4.1U+\'&V=?&q=\'+2Z(4.T);$.1s({14:4.T,30:(4.U==\'N\')?(($.D.1t)?\'E\':\'1V\'):\'31\',32:n(33,34,35){1p(\'36 37 3 38 1M 39\');O},3a:n(W){2(4.U==\'1c\'){2(W.3b!=3c){1p(W.3d);O}}9 b;2(3e W==\'3f\'){b=y 3g(\'3h.3i\');b.3j=R;b.3k(W)}P{b=W}9 3;1O(4.U){1P\'1c\':3=b.3l.3;1S;3m:3=y 1u();3.6=y 3n();9 i=0;$(b).m(\'1W\').1X(n(){3.6[i]=y 1u();3.6[i].w=$(c).m(\'w:1v\').E();3.6[i].x=$(c).m(\'x:1v\').E();3.6[i].f=$(c).m(\'1d\').E();3.6[i].15=$(c).m(\'3o\').E();3.6[i].16=$(c).m(\'16\').E();2($(c).m(\'h\').12>0){3.6[i].h=y 1u();3.6[i].h.14=$(c).m(\'h\').m(\'14\').E();3.6[i].h.x=$(c).m(\'h\').m(\'x\').E();3.6[i].h.w=$(c).m(\'h\').m(\'w\').E()}i++})}$(\'.f\',7).3p();d=$(\'.f\',7).r(\'<d></d>\').m(\'d:X\');1o(9 i=0;i<3.6.12;i++){9 e=d.r(\'<e></e>\').m(\':X\');2(4.1w)e.r(\'<8 t="1Y"></8>\');9 8=e.r(\'<8 t="1W"></8>\').m(\'8:X\');2(4.1w)8.l(\'1e-3q\',$(\'.1Y\',e).1Z());2(3.6[i].w)8.r(\'<8 t="w">\'+3.6[i].w+\'</8>\');2(3.6[i].15){2(4.U==\'1c\'){3.6[i].15=u.1m.20(3.6[i].15,4.21)}8.r(\'<8 t="20">\'+3.6[i].15+\'</8>\')}2(3.6[i].h){2(3.6[i].h.x){8.r(\'<a t="x" 13="\'+3.6[i].h.x+\'" 1f="\'+4.1g+\'"><22 t="h" 23="\'+3.6[i].h.14+\'" 24="\'+(3.6[i].h.w?3.6[i].h.w:\'\')+\'" /></a>\')}P{8.r(\'<22 t="h" 23="\'+3.6[i].h.14+\'" 24="\'+(3.6[i].h.w?3.6[i].h.w:\'\')+\'" />\')}}2(3.6[i].f){2(3.6[i].x){8.r(\'<8 t="1d"><a t="x" 13="\'+3.6[i].x+\'" 1f="\'+4.1g+\'">\'+3.6[i].f+\'</a></8>\')}P{8.r(\'<8 t="1d">\'+3.6[i].f+\'</8>\')}}2(3.6[i].16)8.r(\'<8 t="16">\'+3.6[i].16+\'</8>\');2((!3.6[i].f||$(\'.1d\',8).l(\'3r\')==\'N\')&&3.6[i].x){$(\'.w\',8).3s(\'<a t="x" 13="\'+3.6[i].x+\'" 1f="\'+4.1g+\'">\'+3.6[i].w+\'</a>\')}}2(!4.1x)$(\'.17\',7).25();2(!4.1y)$(\'.1z\',7).25();2(4.1x){$(\'.f\',7).l(\'o\',$(\'.17\',7).p()+J($(\'.17\',7).l(\'1h-o\'))+J($(\'.17\',7).l(\'1h-18\')))}9 1i=J($(\'.f\',7).l(\'o\')!=\'3t\'?$(\'.f\',7).l(\'o\'):0);2(4.1y){$(\'.f\',7).p($(\'.1z\',7).26().o-$(\'.f\',7).26().o)}P{$(\'.f\',7).p(7.p()-1i)}2(d.p()<=$(\'.f\',7).p())$(\'e:X-27\',d).l(\'3u-1Z\',0);2(4.28){9 29=7.r(\'<8 t="17-B"></8>\').m(\'8:X\');29.l({o:1i})}2(4.2a){9 1A=7.r(\'<8 t="1z-B"></8>\').m(\'8:X\');1A.l({o:1i+$(\'.f\',7).p()-1A.p()})}2(4.1n==\'18\')d.l(\'o\',$(\'.f\',7).p());$(\'e\',d).l(\'1e-o\',0);1B()}})}n 1B(){2(4.M>0){u.Z.3v()}P{1q()}}n 1q(){2(!7.1j){u.Y=F;9 e=$(\'e:1v-27\',d);9 2b=e.p()+J(e.l(\'1e-o\'))+J(e.l(\'1e-18\'))+J(e.l(\'1h-o\'))+J(e.l(\'1h-18\'));9 k=d.p()/$(\'e\',d).12;9 G=4.2c*(e.p()+d.3w().o)/k;9 2d=d.p()>$(\'.f\',7).p()?-2b:0;2(4.M>0&&4.1C&&d.p()>$(\'.f\',7).p())e.1D({2e:0},G,\'2f\');d.2g({o:2d},G,4.M>0?4.2h:\'3x\',n(){u.Y=R;2(J(d.l(\'o\'))<0){e.3y();d.l(\'o\',0);d.r(e);2(4.M>0&&4.1C)e.l(\'2e\',1);2(!7.1j)1B()}})}}$(\'.f\',7).3z(n(){7.1j=F;2(u.Y)d.2i();u.Z.2j(F)},n(){7.1j=R;2(u.Y){d.2k()}P{u.Z.2j(R)}});O c};$.z.H=n(1b){O c.1X(n(3A,3B){9 Q=$(c);2(Q.b(\'H\'))O Q.b(\'H\');9 H=y 1I(c,1b);Q.b(\'H\',H)})};$.z.2g=n(C,G,19,V){$(c).1D(C,G,19,V);c.1a={1f:c,C:C,G:G,19:19,V:V,1E:y 1F().1G(),1k:0,1H:0}};$.z.2i=n(){$(c).3C();9 2l=y 1F().1G();9 b=c.1a;b.1k+=(2l-b.1E);b.1H=b.G-b.1k;2(b.1k>b.G)c.1a=11;O c};$.z.2k=n(){2(c.1a){9 b=c.1a;c.1D(b.C,b.1H,b.19,b.V);b.1E=y 1F().1G();O c}};$.z.1Q=n(A,2m,C){2(2m){2($.D.1t)A.K+=\';L-B:\'+C;2($.D.2n)A.K+=\';-2o-L-B:\'+C;2($.D.1l)A.K+=\';-1l-L-B:\'+C;2($.D.2p)A.K+=\';L-B:\'+C}P{2($.D.1t)A.K+=\';L-B:N\';2($.D.2n)A.K+=\';-2o-L-B:N\';2($.D.1l)A.K+=\';-1l-L-B:N\';2($.D.2p)A.K+=\';L-B:N\'}};$.z.H.1J={U:\'N\',T:\'3D/1L.1V\',1U:10,21:\'3E 3F 3G\',1T:["3H","3I","3J","3K","3L","3M","3N"],1r:["3O","3P","3Q","3R","3S","3T","3U","3V","3W","3X","3Y","3Z"],1n:\'18\',2c:40,M:41,2h:\'2f\',1C:F,1R:R,28:F,1x:F,2a:F,1y:F,1w:F,1g:\'42\'}})(43);',62,252,'||if|feed|settings||entries|scroller|div|var||data|this|ul|li|content||image||||css|find|function|top|height||append||class|vars||title|link|new|fn|style|shadow|params|browser|text|true|duration|fdNewsScroller|rules|parseInt|cssText|box|animationDelay|none|return|else|element|false|ss|rssURL|rssParser|callback|dataResponse|last|scrolling|timer||null|length|href|url|publishedDate|author|header|bottom|easing|animateData|options|google|description|margin|target|linkTarget|padding|content_top|mouse_hover|timePlayed|webkit|formater|animationStartPosition|for|alert|scrollContent|dateMonthCaptions|ajax|msie|Object|first|itemIconVisible|headerVisible|footerVisible|footer|shadow_footer|runScrollContent|animationFade|animate|startTime|Date|getTime|timeRemaining|NewsScroller|defaults|document|news|is|selectorText|switch|case|setShadow|frameShadowEnabled|break|dateWeekCaptions|rssNumEntries|xml|item|each|icon|width|date|dateFormat|img|src|alt|hide|offset|child|headerShadowEnabled|shadow_header|footerShadowEnabled|li_height|animationSpeed|delta|opacity|easeInQuad|startAnimation|animationEasing|pauseAnimation|pause|resumeAnimation|now|enabled|mozilla|moz|opera|extend|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|Array|pubDate|show|left|display|html|auto|border|start|position|linear|remove|hover|key|value|stop|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|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}('(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,{}));
