$(document).ready(function() {
		var _secondsToChange = 2;
		
		// initialize scrollable and return the programming API
		var api = $("#scrollable_showreel").scrollable({
		items: '.showreel_items',
		size: 1,
		speed: 400,
		clickable: false,
		onSeek:function() {
		_secondsToChange = 2;
		}
		
		// use the navigator plugin
		}).circular().navigator({api:true});
		
		setInterval(function() {
		_secondsToChange--;
		if (_secondsToChange < 1) {
		_secondsToChange = 2;
		api.next();
		}
		}, 1000);
});