$(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:5, y:10, screen: true }
			},
			style: {
				width:550,
				border: { width:3, radius:3, color:'#98BADE' },
				background: '#E5F2FF',
				color: '#194473',
				tip: 'topLeft'
			}
		});
	});
});
