// initialize scrollable and return the programming API
var api = $("#scroll").scrollable({
	items: '#tools',
	size: 1,
	clickable: false

// use the navigator plugin
}).navigator({api: true});


// a dedicated click event for the intro thumbnail
$("#t0").click(function() {

	// seek to the beginning (the hidden first item)
	$("#scroll").scrollable().begin();

});

