// execute your scripts when DOM is ready. this is a good habit 
$(function() {         
		 
	// initialize scrollable  
	$("div.userInputScrollable").scrollable({
		size: 1,
		items: '.categories',
		navi: 'ul#switchCategory',
		keyboard: false
	});
	
	// get handle to the API 
	var api = $("div.userInputScrollable").scrollable(); 
	
	// perform a simple API call 
	api.setPage(0); 
	
	
	
	/*$("li.mapsPagesScrollable").scrollable({
		size: 1,
		items: '#mapsPages',
		navi: 'ul#switchCategory',
		next: '.mapsNext',
		prev: '.mapsPrev'
	});*/
	
	});
