(function($){$.fn.sites=function(options){options=$.extend({speed:500,width:0,offset:10,easing:'easeOutBack'}, options);halfspeed=parseInt(options.speed / 2);thirdspeed	= parseInt(options.speed / 3);all=$(this).find('ul li');first=$(all).first();last=$(all).last();caption=$(this).find('#sites-caption');all.hide().each(function(i,e){$(this).css('z-index', i);});first.fadeIn(options.speed).addClass('active');caption.html(first.find('a').attr('title'));$('.prev').click(function(){var open=$(all).filter('.active');prev=$(open).prev();if(!prev.length){prev=last;}open.stop(true).animate({left:'+='+(options.width + options.offset)+'px'},{duration:options.speed,specialEasing:{left:options.easing},complete:function(){$(this).css('left','-'+(options.width+options.offset)+'px').hide();}}).removeClass('active');prev.css('left','-'+options.width+'px').show().stop(true).animate({left:'+='+(options.width)+'px'},{duration:options.speed,specialEasing:{left:options.easing}}).addClass('active');$(caption).animate({opacity:0},{duration:halfspeed,complete:function(){$(this).html(prev.find('a').attr('title') )}}).animate({opacity:1},{duration:halfspeed});});$('.next').click(function(){var open=$(all).filter('.active');next=$(open).next();if (!next.length){next=first;}open.stop(true).animate({left:'-='+(options.width+options.offset)+'px'},{duration:options.speed,specialEasing:{left:options.easing},complete:function(){$(this).css('left',(options.width + options.offset)+'px').hide();}}).removeClass('active');next.css('left', options.width + 'px').show().stop(true).animate({left:'-='+(options.width)+'px'},{duration:options.speed,specialEasing:{left:options.easing}}).addClass('active');$(caption).animate({opacity:0},{duration:halfspeed,complete:function(){$(this).html(next.find('a').attr('title'))}}).animate({opacity:1},{duration:halfspeed});});}})(jQuery);
