//animated scrolling for element, with a bounce

$(document).ready(function() {
  $('#scrollit').click(function() {
    var divOffset = $('#scrollable').offset().top;
    var pOffset = $('#scrollable p:eq(2)').offset().top;
    var pScroll = pOffset - divOffset;
    $('#scrollable').animate({scrollTop: '+=' + pScroll + 'px'}, 1000, 'easeOutBounce');
  });
});
