//for circular
$(function() {
   $(".main .jCarouselLite").jCarouselLite({
        btnNext: ".main .next",
        btnPrev: ".main .prev",
        speed: 400,
        easing: "easeinout",
		visible: 4,
		circular: true
    });

	/*//For Mouse wheel and Navigation buttons together
	$(".mouseWheelButtons .jCarouselLite").jCarouselLite({
		btnNext: ".mouseWheelButtons .next",
		btnPrev: ".mouseWheelButtons .prev",
		mouseWheel: true
	});*/
	
	
	
});


//for non circular
/*$(".nonCircular .jCarouselLite").jCarouselLite({
    btnNext: ".nonCircular .next",
    btnPrev: ".nonCircular .prev",
    circular: false
});*/

