$(document).ready(function(){$("ul.banner_ship_dropdown").parent().append("<span></span>");$("ul.adidas_hp_banner_ship li span").click(function(){$(this).parent().find("ul.banner_ship_dropdown").slideDown("fast").show();$(this).parent().hover(function(){},function(){$(this).parent().find("ul.banner_ship_dropdown").slideUp("slow");});}).hover(function(){$(this).addClass("subhover");},function(){$(this).removeClass("subhover");});});var hero={$heroItem:null,timer:null,currentIndex:0,timeout:8000,fade:1000,init:function(){hero.$heroItem=$("#banner-container li");hero.setNavigation();hero.setControls();hero.switchHero(hero.currentIndex);hero.timer=setTimeout(function(){hero.heroRotate();},hero.timeout);},heroRotate:function(){var a=hero.currentIndex+1;if(hero.$heroItem.length==a){a=0;}hero.currentIndex=a;hero.switchHero(a);hero.timer=setTimeout(function(){hero.heroRotate();},hero.timeout);},switchHero:function(b){var c=null;var d=$(".hero-navigation-button");var e=null;var a=null;c=hero.$heroItem.eq(b);hero.$heroItem.css("display","none").fadeTo(0,0);c.css("display","block").fadeTo(hero.fade,1);e=d.eq(b);a=d.eq(b+1);d.removeClass("current").removeClass("next2");e.addClass("current");a.addClass("next2");},setNavigation:function(){$(".hero-navigation-button").click(function(){clearTimeout(hero.timer);var b=$(this);var a=$(".hero-navigation-button").index(this);hero.switchHero(a);hero.currentIndex=a;});},setControls:function(){$("#hero-play").click(function(){clearTimeout(hero.timer);hero.timer=setTimeout(function(){hero.heroRotate();},hero.timeout);});$("#hero-pause").click(function(){clearTimeout(hero.timer);});}};$(document).ready(function(){hero.init();});
