(function(a){a.fn.newsTicker=a.fn.newsticker=function(b){b=b||5000;initTicker=function(c){stopTicker(c);c.items=a("li",c);c.items.not(":eq(0)").hide().end();c.currentitem=0;startTicker(c)};startTicker=function(c){c.tickfn=setInterval(function(){doTick(c)},b)};stopTicker=function(c){clearInterval(c.tickfn)};pauseTicker=function(c){c.pause=true};resumeTicker=function(c){c.pause=false};doTick=function(c){if(c.pause){return}c.pause=true;a(c.items[c.currentitem]).hide("slide",{direction:"right"},"normal",function(){c.currentitem=++c.currentitem%(c.items.size());a(c.items[c.currentitem]).show("slide",{direction:"left"},"normal",function(){c.pause=false})})};this.each(function(){initTicker(this)}).addClass("newsticker").hover(function(){pauseTicker(this)},function(){resumeTicker(this)});return this}})(jQuery);