jQuery(document).ready(function(){

	jQuery('.tooltip_link').each(function(){
	   jQuery(this).qtip({
   		   content: jQuery(this).next('div.author_bio'),
   		   position: {
		   corner: {
    			  target: 'rightTop',
   			      tooltip: 'leftTop'
 			  }
		},
       style: { 
       		width: 300,
      		padding: 10,
      		border: {
         			width: 7,
         			radius: 10
      		},
      name: 'light' // Inherit the rest of the attributes from the preset dark style
   		},
   hide: {
            fixed: true,
            delay: 240
         }
   });
});
	jQuery('.tooltip_link_green').each(function(){
	   jQuery(this).qtip({
   		   content: jQuery(this).next('div.author_bio'),
   		   position: {
		   corner: {
    			  target: 'rightTop',
   			      tooltip: 'leftTop'
 			  }
		},
       style: { 
       		width: 300,
      		padding: 10,
      		border: {
         			width: 7,
         			radius: 10, 
         			color: '#b2d134'
      		},
      name: 'light' // Inherit the rest of the attributes from the preset dark style
   		},
   hide: {
            fixed: true,
            delay: 240
         }
   });
});
	jQuery('.tooltip_link_blue').each(function(){
	   jQuery(this).qtip({
   		   content: jQuery(this).next('div.author_bio'),
   		   position: {
		   corner: {
    			  target: 'rightTop',
   			      tooltip: 'leftTop'
 			  }
		},
       style: { 
       		width: 300,
      		padding: 10,
      		border: {
         			width: 7,
         			radius: 10, 
         			color: '#00b0e0'
      		},
      name: 'light' // Inherit the rest of the attributes from the preset dark style
   		},
   hide: {
            fixed: true,
            delay: 240
         }
   });
});
	jQuery('.tooltip_link_yellow').each(function(){
	   jQuery(this).qtip({
   		   content: jQuery(this).next('div.author_bio'),
   		   position: {
		   corner: {
    			  target: 'rightTop',
   			      tooltip: 'leftTop'
 			  }
		},
       style: { 
       		width: 300,
      		padding: 10,
      		border: {
         			width: 7,
         			radius: 10, 
         			color: '#ffca05'
      		},
      name: 'light' // Inherit the rest of the attributes from the preset dark style
   		},
   hide: {
            fixed: true,
            delay: 240
         }
   });
});

	});