// code for jquery tool tip
// For documentation on this, refer to http://plugins.learningjquery.com/cluetip/
// or the documentation within the jquery.cluetip-0.9.8.js file

$(document).ready(function() {
	// customised elements for the renewals tooltip area
	$("a#businessToolTip, a#medicalToolTip").cluetip( {
		local:true,
		cursor: 'pointer',
		dropShadow: false,
		showTitle: false,
		width: '200px'
	});
	
	// customised elements for the credit card payment area
	$("a#issueNumberToolTip, a#cardSecurityCodeToolTip").cluetip( {
		local:true,
		cursor: 'pointer',
		dropShadow: false,
		showTitle: false,
		width: '300px'
	});	
})