$(document).ready(function() {
	
	$('#about a').qtip({
	   content: $(this).title,
	   position: {
	      corner: {
	         target: 'topLeft',
	         tooltip: 'topLeft'
	      }
	   },
	   show: 'mouseover',
	   hide: 'mouseout'
	});
	
});
