$(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:'bottomRight', tooltip:'topLeft' },
				adjust: { x:0, y:8, screen: true }
			},
			style: {
				border: { width:3, radius:3, color:'#6bab06' },
				background: '#f0f4e6',
				color: '#444444',
				tip: 'topLeft'
			}
		});
	});
});