$(document).ready(function(){

	// Tooltips
	$('a.tooltip').bt({
		contentSelector: '$(this).next(".tooltip")',
		positions: 'top',
		width: 220,
		fill: '#fff',
		strokeStyle: '#999',
		spikeLength: 8,
		spikeGirth: 8,
		padding: 10,
		cornerRadius: 10
	});
	$('a.tooltip-click').bt({
		trigger: ['click'],
		contentSelector: '$(this).next(".tooltip")',
		positions: 'right',
		width: 220,
		fill: '#fff',
		strokeStyle: '#999',
		spikeLength: 8,
		spikeGirth: 8,
		padding: 10,
		cornerRadius: 10
	});
	$('a.tooltip-verifnumber').bt({
		contentSelector: '$(this).next(".tooltip")',
		positions: 'bottom',
		width: 260,
		fill: '#fff',
		strokeStyle: '#999',
		spikeLength: 8,
		spikeGirth: 8,
		padding: 10,
		cornerRadius: 10
	});
	$('input.tooltip-focus').bt({
		trigger: ['focus', 'blur'],
		contentSelector: '$(this).next(".tooltip")',
		positions: 'right',
		width: 220,
		fill: '#fff',
		strokeStyle: '#999',
		spikeLength: 8,
		spikeGirth: 8,
		padding: 10,
		cornerRadius: 10
	});
	$('input.tooltip-focus-notrigger').bt({
		trigger: ['none'],
		contentSelector: '$(this).next(".tooltip")',
		positions: 'right',
		width: 220,
		fill: '#fff',
		strokeStyle: '#999',
		spikeLength: 8,
		spikeGirth: 8,
		padding: 10,
		cornerRadius: 10
	});
	$('a.tooltip-notrigger').bt({
		trigger: ['none'],
		contentSelector: '$(this).next(".tooltip")',
		positions: 'top',
		width: 220,
		fill: '#fff',
		strokeStyle: '#999',
		spikeLength: 8,
		spikeGirth: 8,
		padding: 10,
		cornerRadius: 10
	});
});

