$(document).ready(function() {
  $("#main").scrollable({
    vertical: true,
    mousewheel: false,
    circular: true,
    keyboard: 'static'
    //onSeek: function(event, i) {
    //	horizontal.eq(i).data("scrollable").focus();
    //}
  }).navigator("#main_navi").autoscroll({ autoplay: true, autopause: true, interval: 4000, speed: 1000 });
  var horizontal = $(".scrollable").scrollable({ circular: true }).navigator(".navi");
  horizontal.eq(0).data("scrollable").focus();
  
  //$(".menu a").localScroll({
  //   target: $(this).attr('href'),
  //   onBefore: console.log('scroll')
  //});
});
