// wait until document is fully scriptable
$(document).ready(function() {

	// select #flowpanes and make it scrollable. use circular and navigator plugins
	var scrollables = $("#flowpanes").scrollable({
		clickable:false,
		size: 1
	});
	var api = scrollables.circular().navigator({
		// select #flowtabs to be used as navigator
		navi: "#flowtabs",
		// select A tags inside the navigator to work as items (not direct children)
		naviItem: 'a',
		// assign "current" class name for the active A tag inside navigator
		activeClass: 'current',
		api: true
	});
	
	
	api.move(11);

});