$(document).ready(function() {
  
  $('#gallery #thumbnails').jScrollPane({
    scrollbarOnLeft: true,
    animateTo: true
  });
  
  $('#gallery #thumbnails a.thumb').click(function() {
    var imgid = $('img',this).attr('id');
    $('#gallery #thumbnails')[0].scrollTo('#'+imgid);
  });
  
});

