	jQuery(function($){
		// initialize scrollable together with the autoscroll plugin
		var root = $("#slideshow").scrollable({items:'.images', activeClass:'current' 
		, prev: '.link-prev',next: '.link-next', horizontal:true , vertical: false		, circular:  true  
		, mousewheel:  false 		}).navigator({ 
			navi: "#tabs-navi", activeClass: 'current' 
		}).autoscroll({ 
			interval: 6000 
		});
		// provide scrollable API for the action buttons
		window.api = root.data("scrollable");
		
	});

