$(document).ready(
	function() {
		$('.member').each(function()
		{
		   var self = this;
		   
		   // Setup title
		   var tooltip = $(self).find('.vcard').html();
   			$(self).qtip({
		      content: { 
		         text: tooltip
		      },
		      position: {
		         corner: {
		            target: 'leftMiddle',
		            tooltip: 'topLeft'
		         },
		         adjust: {
		         	x: 50,
		         	y: 10
		         }
		      },
		      show: 'mouseover',
		      hide: 'mouseout',
		      style: { 
     		    width: 135,
     			padding: 5,
     			background: '#FFFFFF',
     			textAlign: 'left',
     			color: '#504d4e',
     			border: {
     				width: 2,
     				radius: 0,
	     			color: '#7f8183'
				},
			  	tip: true,
			  	name: 'light' 
   			  }
   		   })
		   .show();
		});
	}
);