(function($){$.fn.spasticNav=function(options){options=$.extend({speed:800,reset:1500,color:'#A0A0A0',easing:'easeOutBack'},options);return this.each(function(){var nav=$(this),currentPageItem=$('#selected',nav),blob,reset;$('<li id="blob"></li>').css({width:currentPageItem.outerWidth(),height:currentPageItem.outerHeight()+10,left:currentPageItem.position().left,top:currentPageItem.position().top,backgroundColor:options.color}).appendTo(this);blob=$('#blob',nav);$('li:not(#blob)',nav).hover(function(){clearTimeout(reset);blob.animate({left:$(this).position().left,width:$(this).width()},{duration:options.speed,easing:options.easing,queue:false});},function(){reset=setTimeout(function(){blob.animate({width:currentPageItem.outerWidth(),left:currentPageItem.position().left},options.speed)},options.reset);});});};})(jQuery);
