// execute your scripts when DOM is ready. this is a good habit 
$(function() {         
         
    // initialize scrollable  
    $("div.scrollable").scrollable({ 
             
        
		size: 1,
	
		// items are auto-scrolled in 2 (now 6) second intervals 
        interval: 8000, 
         
        // when last item is encountered, go back to first item 
        loop: true,  
         
        // make animation a little slower than the default 
        speed: 2300, 
         
        // when seek starts make items a little transparent 
        //onBeforeSeek: function() { 
//            this.getItems().fadeTo(1000, 0.1);         
//        }, 
//         
//        // when seek ends resume items to full transparency 
//        onSeek: function() { 
//            this.getItems().fadeTo(1000, 1); 
//        } 
    });     
     
}); 