$(document).ready(function() {
 initialize scrollable together with the autoscroll plugin
var root = $("#scroller").scrollable({circular: true}).navigator({
		navi: "#flowtabs",
		naviItem: 'div',
		activeClass: 'hover',
		history: true
	}).autoscroll({ autoplay: true });
 provide scrollable API for the action buttons
window.api = root.data("scrollable");

$('#t1').mouseover(function(){window.api.seekTo(0, 0)});
$('#t2').mouseover(function(){window.api.seekTo(1, 0)});
$('#t3').mouseover(function(){window.api.seekTo(2, 0)});
});


