  $(document).ready(function(){
    $('.itooltip').qtip({
      content: { text: $(self).attr('title') },
      show: 'mouseover',
      hide: 'mouseout',
      style: { border: { width: 0, radius: 2, color: '#ccc' }, name: 'light', tip: 'topRight' },
      position: { corner: { target: 'bottomRight', tooltip: 'topRight' } }
      
    });
  });

