$('.popularlinks').qtip({
   position: {
      corner: {
         target: 'bottomLeft',
         tooltip: 'topRight'
      }
   },
    style: { 
      tip: 'topRight' // Notice the corner value is identical to the previously mentioned positioning corners
   }
});
$('.fqdesc').qtip({
   position: {
      corner: {
         target: 'bottomLeft',
         tooltip: 'topRight'
      }
   },
    style: { 
      tip: 'topRight' // Notice the corner value is identical to the previously mentioned positioning corners
   }
});

