// Scrollable init 

jQuery(document).ready(function() {
	jQuery("#scrollable").scrollable({
		circular: true,
		speed:350,
		autopause: true
	}).autoscroll({ 
		interval: 6000,
		autoplay: true 
	});
});

