
// execute your scripts when DOM is ready. this is a good habit
$(function() {		

	// initialize scrollable 
	$("div.scrollable").scrollable({
		vertical:true, 
		size: 1

	// use mousewheel plugin
	}).circular().navigator().mousewheel().autoscroll({ 
	    steps: 5, 
	    interval: 10000
	});
	
	$("div.scrollable2").scrollable({
		vertical:true, 
		size: 1

	// use mousewheel plugin
	}).circular().navigator().mousewheel().autoscroll({ 
	    steps: 5, 
	    interval: 10000
	});
	
		

});
