$('a[title]').each(function()
{
   $(this).qtip({ 
      content: $(this).attr('title'),
      position: {
         corner: {
            tooltip: 'topLeft',
        	target: 'bottomMiddle'
         }
      },
       style: {
      padding: '2px 2px',
      tip: true,
      textAlign: 'left',
      name: 'dark',
      width: 'auto'
   }
   })
   .attr('title', '');
})

