// execute your scripts when the DOM is ready.
$(function() {
// initialize scrollable
$(".scrollable").scrollable({speed: 700, circular: true}).navigator().autoscroll({interval: 10000, autopause: true});
	
	var api = $(".scrollable").data("scrollable");
	
		$(".scrollable").click(function(){
				api.stop();
		});
		$(".navi a, #navWrap a").click(function(){
				api.stop();
		});
});
