// execute your scripts when DOM is ready. this is a good habit
$(function() {		
		
	// initialize scrollable with mousewheel support
	$(".scrollable").scrollable({ circular: true, vertical: false, mousewheel: true, size:3 });	
	
});


$(function() {		
		
	// initialize scrollable with mousewheel support
	$(".scrollable2").scrollable({ circular: true, vertical: false, mousewheel: true }).autoscroll({ autoplay: true, interval: 3000, steps:3 });	
	
});
