var $j = jQuery.noConflict();



// execute your scripts when DOM is ready. this is a good habit 
$j(function() {         
         
    // initialize scrollable  
    $j("div.scrollable").scrollable({ 
             
        // items are auto-scrolled in 2 secnod interval 
        interval: 3000, 
         
        // when last item is encountered go back to first item 
        loop: true,  
         
        // make animation a little slower than the default 
        speed: 600, 
       
    });     
     
}); 