$(document).ready(function(){
	$('a.tip[title]').qtip({
		position: {
			adjust: { 
				x: 0, 
				y: -10,
			},
			corner: {
				target: 'topMiddle',
				tooltip: 'bottomMiddle',
			}
		},
		style: {
			padding: '5px 5px',
			background: '#000',
			color: '#fff',
			textAlign: 'left',
			border: {
				width: 5,
				radius: 5,
				color: '#000',
			},
			width: {
            max: 210,
            min: 0
			},
			tip: true
		}
   });
});
