// Initialize qTip

$j('a.tip').qtip({
	style: {
		border: { width: 2, radius: 5 },		
		tip: true,
		name: 'blue'
	},
	position: {
		target: 'mouse', 
		adjust: {  mouse: true, screen: true } }
});


$j('a.CV2-explain').qtip({
	content: '<p><strong>Mastercard, Visa and Discover</strong>: Your credit card CV2 is the 3-digit number located on the reverse of your credit card</p><img alt="CV2" src="/images/cv2.jpg" /><br /><p><strong>American Express</strong>: Your credit card CVV2 is the 4-digit number located on the front of your card</p><img alt="CV2" src="/images/cvv2.jpg" />',
	style: { 
		border: { color: '#D09905', width: 2, radius: 5 }, 
		width: 250, 
		radius: 5,
		background: 'white',
		tip: false
	},
	position: {
	   adjust: { x: -30, y: -180 }
	},
	hide: { when: 'mouseout', fixed: true }
});