(function($){$.fn.jscroll=function(options){var settings={duration:2000};return this.each(function(){var $this=$(this);var slides=$this.children();var current=0;if(options){$.extend(settings,options);}var scrollIt=function(){if(slides!=undefined && slides.length>0){$(slides[current]).fadeTo('slow',.01,function(){$(this).slideUp('slow',function(){$(this).remove();$this.append($(this));$(this).show(10);$(this).fadeTo(10,1.0);current++;if(current>=slides.length){current=0;}setTimeout(scrollIt,settings.duration);});});}};setTimeout(scrollIt,settings.duration);});};})(jQuery);
