(function($){$.fn.carousel=function(options){settings=jQuery.extend({show:5,size:118},options);return this.each(function(){var step=settings.show*settings.size;var carousel_current=0;var max=Math.floor($(this).children().length/settings.show)*step;max=-max;var current=this;$(this).wrapInner('<div class="carousel-content" />');if(max<0)$(this).prepend('<a href="#" class="carousel-button carousel-left"></a>').append('<a href="#" id="carousel-right" class="carousel-button carousel-right"></a>');$(".carousel-content",current).wrapInner('<div class="carousel-content-wrap" />');$('.carousel-left',current).click(function(){$(this).blur();carousel_current+=step;if(carousel_current>0){carousel_current=max;$('.carousel-content-wrap',current).animate({marginLeft:step+"px"},function(){$(this).hide().css("margin-left",max-step+"px").show().animate({marginLeft:max+"px"})})}else $('.carousel-content-wrap',current).animate({marginLeft:carousel_current+"px"});return false});$('.carousel-right',current).click(function(){$(this).blur();carousel_current-=step;if(carousel_current<max){carousel_current=0;$('.carousel-content-wrap',current).animate({marginLeft:max-step+"px"},function(){$(this).hide().css("margin-left",step+"px").show().animate({marginLeft:carousel_current+"px"})})}else $('.carousel-content-wrap',current).animate({marginLeft:carousel_current+"px"});return false})})}})(jQuery);
