$(document).ready(function(){
			   

$('#slider').jcarousel({
    	wrap: 'circular', 
    	auto: 1,
    	animation: 20000,
    	vertical: true

    });

		
});
function mycarousel_initCallback(carousel)
{
    // Pause autoscrolling if the user moves with the cursor over the clip.
    carousel.clip.hover(function() {
        carousel.stopAuto();
    }, function() {
        carousel.startAuto();
    });
};

 

 

 
