 $(document).ready(function() {
                
                $("div.scrollable2").scrollable({ 
                        vertical:true,  
                        size: 13 
                    // use mousewheel plugin 
                    });
                    //.mousewheel();     
                
                
                // initialize scrollable together with the autoscroll plugin
                window.api = $("#scroller")
                
                .scrollable({ 
                        vertical:true,
						loop: true
                    // use mousewheel plugin 
                    })
                
                .autoscroll({
                    autoplay: true,
                    api: true
					
                });
                
                
                    
                });	