$(document).ready(function() {
	$("div#wheeled.scrollable").scrollable({size: 1}).mousewheel().find("a").overlay({ 
		// each trigger uses the same overlay with id "gallery" 
		target: '#gallery', 
		// optional exposing effect with custom color 
		expose: '#111', 
		// clicking outside the overlay does not close it 
		closeOnClick: true,
		absolute: true,
		top: 20
 
	// gallery plugin 
	}).gallery({ 
		// do not use the same disabled class name as scrollable 
		disabledClass: 'inactive' 
	});
	
});