$(document).ready(function() {
	$(".prices .help img").qtip({
		content: {
			url: '/assets/tooltips/lowest_price.html',
			data: { id: 'lowest_price' },
			method: 'get'
		},
		hide: { when: 'mouseout', fixed: true, delay: 2000 },
		style: {
			background: '#E5F6FE',
			padding: 10,
			width: 270,
			tip: 'leftMiddle',
			border: {width: 6,radius: 5,color: '#44A8D0'}
		},
		position: {
		      corner: {
		         target: 'rightMiddle',
		         tooltip: 'leftMiddle'
		      }
		   }
	});
});