$(document).ready(function () {
  $('.help-tip').each(function () {
    id = $(this).attr('ref');
    $(this).tooltip({
      tip: '#help-tip-' + id,
      position: 'bottom right',
      offset: [0, 8],
      delay: 0
    });
  });
});