
  
  $(document).ready(function(){

    // FANCYBOX
    $("a.fancybox").fancybox({
      'overlayShow'     : false,
      'zoomSpeedIn'     : 600,
      'zoomSpeedOut'    : 500,
      'easingIn'        : 'easeOutBack',
      'easingOut'       : 'easeInBack'
    }); 

    $(".scrollable").scrollable({
      size: 3,
      items: ".items",
      item: "a",
      next: "#next",
      prev: "#prev",
      speed: 1000
    }).circular().mousewheel().autoscroll({
      steps: 1,
      interval: 5000
    });

  });

