Your Modified jCarosel Lite script helped me to solve my problem also. Thanks Starx. But I was not finding the way how to use the Command as I am learner yet.
later I got that, I used on two slider on a page. They are:
<script type="text/javascript">
$(function() {
$(".scrollMore .carousel").jCarouselLite({
btnNext: ".scrollMore .next",
btnPrev: ".scrollMore .prev",
scroll: 1,
visible: 4,
mouseWheel: true,
auto: 800,
speed: 1500,
hoverPause: true,
});
$(".scrollMore .carouselClient").jCarouselLite({
btnNext: ".scrollMore .next",
btnPrev: ".scrollMore .prev",
scroll: 1,
visible: 2,
mouseWheel: true,
auto: 800,
speed: 3000,
hoverPause: true,
});
});
</script>