(function($){$.fn.NewsTicker=function(b){var c=this;c.options={delay:2000,animationSpeed:500,effect:"fade",showTop:0};if(b){c.options=$.extend(c.options,b)}return this.each(function(){var a=$(this);a.initTicker=function(){a.timer=null;a.current=0;a.running=false;a.paused=false;a.timers=0;a.items=$("li",a);a.items.hide();$(a.items[0]).show();a.hover(a.over,a.out);a.startTicker()};a.over=function(){a.paused=true;a.stopTicker()};a.out=function(){a.paused=false;a.startTicker()};a.startTicker=function(){if(a.running||a.paused)return;a.timer=setTimeout(function(){a.nextTick()},c.options.delay)};a.stopTicker=function(){clearTimeout(a.timer)};a.nextTick=function(){a.running=true;$(a.items[a.current]).slideUp(c.options.animationSpeed,function(){a.current++;if((a.current>=a.items.length)||(c.options.showTop>0&&a.current>c.options.showTop-1)){a.current=0}$(a.items[a.current]).fadeIn(c.options.animationSpeed,function(){a.running=false;a.startTicker()})})};a.initTicker()})}})(jQuery);