jQuery(function(){
$('.person a.pink_q[title], a.pink_q[title]').qtip({ style: {
		'background':'#e2007a',
		border: {
         width: 1,
         radius: 5,
         color: '#e2007a'
      },
 tip: true } });

$('.person a.green_q[title], a.green_q[title]').qtip({ style: {
		'background':'#30b64c',
		border: {
         width: 1,
         radius: 5,
         color: '#30b64c'
      },
 tip: true } });

 $('.person a.coral_q[title], a.coral_q[title]').qtip({ style: {
 		'background':'#e4530f',
		border: {
         width: 1,
         radius: 5,
         color: '#e4530f'
      },
 tip: true } });

});
