$(document).ready(function() 
{
	$("#content a[title]").qtip({
		style: { 
			border: {
		    	width: 1,
		    	radius: 5,
		    	color: '#10386B'
			},
		    width: 600,
		    tip: true
		},
		position: {
			corner: {
				target: 'topMiddle',
		        tooltip: 'bottomMiddle'
			}
		}
	});
});


