$('.bubbleInfo a').each(function()
{
   $(this).qtip({ 
      content: $(this).attr('alt'),
      position: { 
					corner: { target: 'topMiddle',  tooltip: 'bottomMiddle' },
				  adjust: {	x: 0, y: -10 }
      },
			style: {
			      width: 200,
			      background: '#17204b',
			      color: 'white',
			      border: { width: 3, radius: 1, color: 'white' },
						classes: { tooltip : 'tooltiptext', content : 'tooltipcontent' },
			      tip: 'bottomMiddle',
			      name: 'dark'
			 }
   })
});
