(function($){$.fn.ticker=function(options){var defaults={fx:"scrollLeft",speed:800,timeout:6000,autoplay:false};var options=$.extend(defaults,options);return this.each(function(){var $ticket=$(this);var ticketWidth=$(this).width();var t=0;var highest;$("*",this).each(function(){if($(this).outerHeight()>t){highest=$(this);t=highest.outerHeight();}});$ticket.cycle({fx:options.fx,speed:options.speed,timeout:options.timeout,before:function(currSlideElement,nextSlideElement,options,forwardFlag){$(nextSlideElement).css("width",ticketWidth);
}});$ticket.css("width",ticketWidth);$ticket.css("height",t);$ticket.hover(function(){$ticket.cycle("pause");},function(){$ticket.cycle("resume");});});};})(jQuery);