$(function() {

	// select one or more elements to be scrollable-enabled 
	var api = $(".scrollable").scrollable({ 
	 
	    // one configuration property 
	    size: 1,
	    api: true,
	    loop: true
	 
	    // ... the rest of the configuration properties 
	});
	
	$(".more-info").click(function() { api.next(); return false; });
	$(".back-info").click(function() { api.prev(); return false; });
});