$(function() {
	// show controls. They are hidden for when javascript disabled
	$('.arrow-left').show();
	$('.arrow-right').show();
    $(".carousel").jCarouselLite({
        btnNext: ".arrow-right",
        btnPrev: ".arrow-left",
		auto: 0,
		visible: 1
    });
});