$(function(){
    /*
     // initialize scrollable with mousewheel support
     $(".scrollable").scrollable( {
     vertical: true,
     circular : true,
     mousewheel : true
     }).autoscroll( {
     autoplay : true,
     steps : 1
     });
     ;
     */
$(window).load(function(){
    if ($(".scrollable img").size() > 4) {
    
        $('.scrollable').jCarouselLite({
            auto: 10,
            speed: 3000,
            circular: true,
            visible: 4,
            vertical: true,
			mouseWheel: true,
        });
    }
});
});
