// Initialize qTip

$('a.tip').qtip({ 
	style: {
		border: { width: 1, radius: 2, color: '#D1BA8A' },
		tip: true,
		background: '#EAD09B',
		color: '#74613C',
		'font-size': 12,
		width: 225,
		'text-align': 'center'
	},
	position: {
   	adjust: { x: 0, y: 15 },
   	corner: { target: 'topMiddle', tooltip: 'bottomMiddle' }
	},
	show: { effect: { type: 'fade', length: 300 } }
});
