$(document).ready(function() {
  $('#content.act_detail img.help').each(function(){
    var $img = $(this);
    $img.qtip({
      content: {
        url:    '/tooltips',
        data:   { tooltip: $img.attr('id') }
      },
      hide: {
        when: 'mouseout',
        fixed: true,
        delay: 2000
      },
      style: {
        background: '#E5F6FE',
        padding:    10,
        width:      270,
        tip:        'leftMiddle',
        border: {
          width:  6,
          radius: 5,
          color:  '#44A8D0'
        }
      },
      position: {
        corner: {
          target:  'rightMiddle',
          tooltip: 'leftMiddle'
        }
      }
    });
  });
});
