$(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: 'leftTop'
		         },
		         adjust: {
		         	x: 50,
		         	y: 10
		         }
		      },
		      show: 'mouseover',
		      hide: 'mouseout',
		      style: { 
     			width: 200,
     			padding: 1,
     			background: '#6F828B',
     			color: 'white',
     			textAlign: 'right',
     			border: {
     				width: 1,
     				radius: 0,
	     			color: '#6F828B'
				},
			  	tip: 'leftTop',
			  	name: 'light' 
   			  }
   		   })
		   .show();
		});
	}
);
