$(document).ready(function(){$("#mycarousel").jcarousel({animation:500,auto:5,itemVisibleInCallback:{onBeforeAnimation:function(evt,state,i){var i=((i-1)%7)+1;setActiveNav(i);}},scroll:1,wrap:"circular"});var carousel=$("#mycarousel").data("jcarousel");$("#canav-1").bind("mousedown",function(){carousel.stopAuto();carousel.scroll(1,1);setActiveNav(1);});$("#canav-2").bind("mousedown",function(){carousel.stopAuto();carousel.scroll(2,1);setActiveNav(2);});$("#canav-3").bind("mousedown",function(){carousel.stopAuto();carousel.scroll(3,1);setActiveNav(3);});$("#canav-4").bind("mousedown",function(){carousel.stopAuto();carousel.scroll(4,1);setActiveNav(4);});$("#canav-5").bind("mousedown",function(){carousel.stopAuto();carousel.scroll(5,1);setActiveNav(5);});$("#canav-6").bind("mousedown",function(){carousel.stopAuto();carousel.scroll(6,1);setActiveNav(6);});$("#canav-7").bind("mousedown",function(){carousel.stopAuto();carousel.scroll(7,1);setActiveNav(7);});});function setActiveNav(index){$(".carousel-nav-item").removeClass("active");$("#canav-"+index).addClass("active");}
