$(document).ready(function() {
	$('a[title].info').each(function() {
		$(this).qtip({
			position: {
				target: $(this).parent(),
				adjust: {
					x: 65,
					y: 15
				},
				corner: {
					target: 'topLeft',
					tooltip: 'bottomLeft'
				}
				
			},
			style: {
				width: {
					min: 100,
					max: 180
				},
				padding: 4,
				background: '#222',
				color: '#fff',
				border: {
								 width: 2,
								 radius: 5,
								 color: '#222'
				},
				tip: true
			}
		});
	});
});
