var Scroller={timeout:null,target:null,delay:5000,duration:1000,current:null,scroll:function(){var b=$("#mainBannerPanes"),c=$("#mainBannerPanes .bannerPane"),a=$("#mainBannerNav");b.animate({left:"-912px"},Scroller.duration/(Scroller.target!=null?4:1),"swing",function(){a.find(".bannerButton").removeClass("selected");b.css({left:0}).append(c.first());var e=b.find(".bannerPane:first").attr("id"),d=e.replace("bannerPane","bannerButton");$("#"+d).addClass("selected");if(Scroller.target==null||Scroller.target==e){Scroller.target=null;Scroller.timeout=setTimeout(Scroller.scroll,Scroller.delay)}else{Scroller.scroll()}})},init:function(){var d=$("#mainBanner"),b=$(".bannerPane",d),a=$(".bannerNav",d),e=b.first().attr("id"),c=e.replace("bannerPane","bannerButton");b.show();a.fadeIn("fast",function(){$("#"+c).addClass("selected");a.find(".bannerButton").click(function(){if($(this).is(".selected")){return}clearTimeout(Scroller.timeout);Scroller.target=this.id.replace("bannerButton","bannerPane");Scroller.scroll();return false})});Scroller.timeout=setTimeout(Scroller.scroll,Scroller.delay)}};
