// execute your scripts when the DOM is ready. this is a good habit 
// What this first enclosure function does is very important, it will
// not run any of your javascript until your whole page has been loaded.
// All code you want to write, either for your jqueryTools, jQuery, or 
// even good old javaScript should be written within this function.
$(document).ready(function() {
	
	// initialize scrollable 
	$("div.scrollable").scrollable({ 

	    // one configuration property 
	    size: 1 

	    // ... the rest of the configuration properties 
	});
	
});
// no more code below this line.