$(function(){
		
		$("#slidebox").jCarouselLite({
		visible: 1,
		start: null,
		scroll: 1,
		auto:3000,
		speed:3000,				
		btnGo:
		    [".1", ".2", ".3"],
		
		afterEnd: function(a, to, btnGo) {
				if(btnGo.length <= to){
					to = 0;
				}
				$(".thumbActive").removeClass("thumbActive");
				$(btnGo[to]).addClass("thumbActive");
		    }	
			
			
			
			
	
	});
	
});
