(function($){$.fn.myscroll=function(options){var defaults={speed:40,rowheight:24};var opts=$.extend({},defaults,options),intid=[];function marquee(obj,step){obj.find("table").animate({margintop:'-=1'},0,function(){var s=math.abs(parseint($(this).css("margin-top")));if(s>=step){$(this).find("tr").slice(0,1).appendto($(this));$(this).css("margin-top",0);}});} this.each(function(i){var sh=opts["rowheight"],speed=opts["speed"],_this=$(this);intid[i]=setinterval(function(){if(_this.find("table").height()<=_this.height()){clearinterval(intid[i]);}else{marquee(_this,sh);}},speed);_this.hover(function(){clearinterval(intid[i]);},function(){intid[i]=setinterval(function(){if(_this.find("table").height()<=_this.height()){clearinterval(intid[i]);}else{marquee(_this,sh);}},speed);});});}})(jquery);