Carousel, Horizontal Switch, Customized Items Per Step

<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery.SimpleCarousel.js"></script>
<script type="text/javascript">
(function($){
        $("#carousel").SimpleCarousel({
            // V - Vertical(Default)
            // H - Horizontal
            playDirection: 'H'

            // Default:itemsPerPage (Auto calculate)
            itemsPerStep: 3
        });
})(jQuery);
</script>