 $(document).ready(function(){
   $("ul.CMSListMenuUL").superfish({ 
            delay:      500,                            // one second delay on mouseout 
            animation:  {opacity:'show',height:'show'}  // fade-in and slide-down animation 
         }); 
         
     $('.top a').click(function(){
     	$('html, body').animate({scrollTop:0}, 'slow');
         return false;
         });
         
        $("div.scrollable").scrollable({ 
        vertical:true,  
        size: 1
        }).circular().autoscroll({interval: 10000});

 });
 
