$(document).ready(function()
{
	$('.vtip').qtip({
		position: {
			my: 'bottom left',
			target: 'mouse',
			viewport: $(window), // Keep it on-screen at all times if possible
			adjust: {
				x: 10,  y: 10
			}
		},
		hide: {
			fixed: true // Helps to prevent the tooltip from hiding ocassionally when tracking!
		},
		style: { 
			border: {
				width: 1,
				radius: 3,
				color: '#7F8754'
			},
			tip: 'topLeft',
			name: 'green'
		}
	});
});
