// JavaScript Document

// execute your scripts when DOM is ready. this is a good habit
$j(function() {		
		
	// initialize scrollable 
	$j("div.scrollable").scrollable({
		size: 3,
		items: '#thumbs',  
		hoverClass: 'hover'
	});	
	
});
