   $(document).ready(function(){
    $("#boxc").jCarouselLite({
        btnPrev: "#prev",
		btnNext: "#next",
   		auto: 1000,
   		scroll: 1,
   		speed: 1000, 
   		vertical: false,
   		visible: 4, 
   		circular: true 
    });
	$("#boxcImg ul li:not(:first)").hide();
	$("#boxc ul li").each(function(i){
		$(this).click(function(){
			$("#bocxImg ul li").hide();
			$($("#boxImgc ul li")[i%($("#boxc ul li").length/3)]).fadeIn("slow");
			})
		})
});