(function($){$.fn.vTicker=function(d){var e={speed:700,pause:4000,showItems:3,animation:'',mousePause:true,isPaused:false};var d=$.extend(e,d);moveUp=function(a,b){if(d.isPaused)return;var c=a.children('ul');first=c.children('li:first').clone(true);c.animate({top:'-='+b+'px'},d.speed,function(){$(this).children('li:first').remove();$(this).css('top','0px')});if(d.animation=='fade'){c.children('li:first').fadeOut(d.speed);c.children('li:last').hide().fadeIn(d.speed)}first.appendTo(c)};return this.each(function(){var a=$(this);var b=0;a.css({overflow:'hidden',position:'relative'}).children('ul').css({position:'absolute',margin:0,padding:0}).children('li').css({margin:0,padding:0});a.children('ul').children('li').each(function(){if($(this).height()>b){b=$(this).height()}});a.children('ul').children('li').each(function(){$(this).height(b)});a.height(b*d.showItems);var c=setInterval(function(){moveUp(a,b)},d.pause);if(d.mousePause){a.bind("mouseenter",function(){d.isPaused=true}).bind("mouseleave",function(){d.isPaused=false})}})}})(jQuery);
