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