// execute your scripts when the DOM is ready. this is mostly a good habit
jQuery(document).ready(function(){
    jQuery(".scrollable").scrollable({
          // basic settings
          circular: true
    }).navigator(".navi");
});

