$(document).ready(function() {
	$('a[rel].tooltipPR').each(function()
	{
		$(this).qtip({
			show: { when:'mouseover', delay:0 },
			hide: { event:'mouseout' },
			content: { text: $(this).attr('rel') },
			position: {
				corner: { target:'topLeft', tooltip:'bottomLeft' },
				adjust: { x:0, y:-8, screen: true }
			},
			style: {
				border: { width:3, radius:0, color:'#767676' },
				tip:false
			}
		});
	});
});