(function($){$.fn.Slider=function(options){var defaults={SliderTime:1400};var options=$.extend(defaults,options);return this.each(function(){var GoRate=$("#Window li").css('width').replace("px","")*1;var TotalCount=$("#Window li").length;var CurrentIndex=0;$("#Window").append("<ul id=\"navi\"></ul>");for(var i=0;i<TotalCount;i++)$("#Window #navi").append("<li>"+(i+1)+"</li>");$("#Window #navi li:first").addClass('Active');$("#Window #navi li").click(function(){$("#Window #navi li").removeClass('Active');CurrentIndex=($(this).html()*-1)+1;var MarginLeftAmount=CurrentIndex*GoRate;$("#Table").animate({marginLeft:MarginLeftAmount+'px'},options.SliderTime);$(this).addClass('Active');pageTracker._trackEvent('Sticky Games Navi','Click','Index : '+CurrentIndex);});});};})(jQuery);