// This file is included on the product/project details page
$(document).ready(function() {
  // make images scrollable
  $("div.scrollable").scrollable({
    vertical: true,
    keyboard: false,
    next: '.nextPage',
    prev: '.prevPage'
  });

  // update image captions
  if ($("#image-caption").length) {
    $(".scrollable a").click(function() {
      var caption = $(this).attr('title') ? $(this).attr('title') : '&nbsp;';
      $("#image-caption").html(caption);
    });
  };
});

