
// execute your scripts when the DOM is ready. this is a good habit 
$(document).ready(function() {
 
    // initialize scrollable 
    $("div.scrollable").scrollable({ 
 
    // one configuration property 
    size: 1,
	clickable: false
 
    // ... the rest of the configuration properties 
	});
	$("#triggers a").overlay({

	// each trigger uses the same overlay with the id "gallery"
	target: '#gallery',

	// optional exposing effect
	expose: '#f1f1f1'

// let the gallery plugin do its magic!
}).gallery({

	// the plugin accepts its own set of configuration options
	speed: 800
});

 
}); 

