/*
Initialize jQuery Autoscrollbar
*/

$(document).ready(function() {
	// initialize scrollable together with the autoscroll plugin
	var root = $("#scroller").scrollable({circular: true}).autoscroll({ steps:1, interval:5000, autoplay:true, autopause:true });
	// provide scrollable API for the action buttons
	//window.api = root.data("scrollable");
});

