<!--Inicia Funcion Slider Nuevo 2-->
	$(function() {
	$("#slidebox").jCarouselLite({
		vertical: false,
		hoverPause:true,
		btnPrev: ".previous",
		btnNext: ".next",
		visible: 1,
		start: 0,
		scroll: 1,
		circular: true,
		auto:9000,			/*Velocidad en cambiar de Imagen*/
		speed:850,			/*Velocidad en la transicion de Imagen*/
		btnGo:
		    /*
			[".1", ".2",
		    ".3", ".4"],
			*/
			
			[".1", ".2",
		    ".3", ".4",
			".5", ".6"],
		afterEnd: function(a, to, btnGo) {
				if(btnGo.length <= to){
					to = 0;
				}
				$(".thumbActive").removeClass("thumbActive");
				$(btnGo[to]).addClass("thumbActive");
		    }
		});
	});
	<!--Termina Funcion Slider Nuevo 2-->
