Carousel, Horizontal Switch, Customized Easing Effect

<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery.easing.1.3.min.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: swing
        // @see http://gsgd.co.uk/sandbox/jquery/easing/
        // @see http://easings.net/zh-cn/
        easing: "easeOutBounce"
    });
})(jQuery);
</script>