(function($){$.fn.easySlider=function(options){var defaults={prevId:'prevBtn',prevText:'<',nextId:'nextBtn',nextText:'>',orientation:'',speed:1};var options=$.extend(defaults,options);return this.each(function(){obj=$(this);var s=$("li",obj).length;var w=obj.width();var h=obj.height();var ts=s-1;var t=0;var vertical=(options.orientation=='vertical');$("ul",obj).css('width',s*w);if(!vertical)$("li",obj).css('float','left');$(obj).after('<div class="np"><span id="'+options.prevId+'"><a href=\"javascript:void(0);\"><img src="http://www.captivatemarketing.com/img/images/structure/previous.jpg" alt="Previous" width="16" height="17"/></a></span> <span id="'+options.nextId+'"><a href=\"javascript:void(0);\"><img src="http://www.captivatemarketing.com/img/images/structure/next.jpg" alt="next" width="16" height="17"/></a></span></div>');$("a","#"+options.nextId).click(function(){animate("next");});$("a","#"+options.prevId).click(function(){animate("prev");});function animate(dir){if(dir=="next"){t=(t>=ts)?ts:t+1;}else{t=(t<=0)?0:t-1;};if(!vertical){p=(t*w*-1);$("ul",obj).animate({marginLeft:p},options.speed);}else{p=(t*h*-1);$("ul",obj).animate({marginTop:p},options.speed);}};if(s>1)$("a","#"+options.nextId).fadeIn();});};})(jQuery);