$(function() {
    $(".carusel").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
		visible: 1,
		scroll: 1,
		speed: 0,
		beforeStart: function() {
			$(".carusel").fadeTo(0, 0);
			
		},
		afterEnd: function() {
			$(".carusel").fadeTo(500, 1);
		}
    });
});

