$('a[title]').each(function()
{
   $(this).qtip({ 
      content: $(this).attr('title'),
      position: {
         corner: {
            target: 'topRight',
            tooltip: 'bottomLeft'
         }
      },
      style: { 
         tip: 'bottomLeft',
         name: 'cream'
      }
   })
   .attr('title', '');
})