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