(function(a){function b(e,d){var f={titleID:".ticker-title",newsID:".ticker-headline",newsURL:"/news",feedURL:"/news.rss",pause:3000,speed:"slow"};f=a.extend(f,d);this.opts=f;this.root=a(e);this.interval=null;this.hold=false;this.items=[];this.index=0;var c=this;a(e).addClass("newsTicker").hover(function(){c.stop(c)},function(){c.start(c);c.tick(c)});a("a",e).attr("href",this.opts.newsURL);a.ajax({url:this.opts.feedURL,type:"GET",dataType:"xml",success:function(g){c.parseXML(c,g);c.start(c)}})}a.extend(b.prototype,{getVersion:function(){return"@VERSION"},parseXML:function(c,d){a(d).find("item").each(function(){c.items.push({title:a(this).find("title").text(),link:a(this).find("link").text()})})},start:function(c){c.interval=setInterval(function(){c.tick(c)},c.opts.pause)},stop:function(c){clearInterval(c.interval);a(c.opts.newsID,c.root).show()},pause:function(c){c.hold=true},resume:function(c){c.hold=false},tick:function(c){if(c.hold){return}c.pause(c);a(c.opts.newsID,c.root).fadeOut(c.opts.speed,function(){c.swap(c);a(this).fadeIn(c.opts.speed,function(){c.resume(c)})})},swap:function(c){c.index=++c.index%(c.items.length);if(c.items[c.index]){a(c.opts.newsID,c.root).html(c.items[c.index]["title"]).attr("href",c.items[c.index]["link"]||c.opts.newsURL)}}});jQuery.prototype.newsTicker=function(e){if(!e||typeof e=="number"){var c=e||0;var d=a.data(this.get()[c],"newsTicker");if(d){return d}}a(this).each(function(){var f=new b(this,e);a.data(this,"newsTicker",f)});return this}})(jQuery);