// initialize scrollable together with the autoscroll plugin
var root = $("#scroll").scrollable({
	items: '#tools',
	circular: true,
	easing: "swing"
}).autoscroll({ autopause: true, interval: 5000 }).navigator();

// provide scrollable API for the action buttons
window.api = root.data("scrollable");

$('.navi a').mouseenter(function(){
	api.pause();
});

$('.navi a').mouseout(function(){
	api.play();
});

