$(function(){
		
	$('.card_popup').each(function() {// Select all elements with the "tooltip" attribute 
	   $(this).qtip(
			{ 
				content: $(this).attr('rel'), 
				hide: {
					fixed: true, // Make it fixed so it can be hovered over
					delay: 250 
				},
				position: {
					corner: {
				         target: 'rightTop',
				         tooltip: 'leftTop'
					}
				},
				show: {
					solo: true
				}, 
				style: {
					tip: true 
				}
	   		}
	   	); // Retrieve the tooltip attribute value from the current element
   });

});
	
