// execute your scripts when the DOM is ready. this is mostly a good habit

$(document).ready(function() {

	// heeeeeeeeeeere we go.
	$(".scrollable")
		.scrollable({
			circular: true, 
			mousewheel: true
		})
		.navigator()
		.autoscroll({
			interval: 3000
		});	
});

