
$(document).ready(function() {

	// SIDE BAR SCROLLER CASES
	$(".scroller-js1 .scrollable")
		.scrollable({
			size: 1,
			vertical: true,
			items:'.item-box',
			loop: true,
			speed: 400,
			easing: 'swing',
			clickable: false,
			keyboard : false
			})
		.autoscroll({
			autoplay: true,
			autopause: true,
			interval: 12000
			})
		.circular();
});


