$(document).ready(function(){
	$('#editShippingLink').click(function () { 
		$("#shippingAddress").hide();
		$("#shippingAddressEdit").show().append("<input type='hidden' name='editFlag' value='1' />");
		$('#editShippingLink').remove();
	});	
	
	$(".tipSecurity").jHelperTip({
		 trigger: "hover",
		 source: "ajax",
		 topOff: 10,
		 leftOff: 20,
		 type: "GET", 
		 url: 'includes/tips.cfm',
		 data: 'tip=security',
		 loadingText: 'loading...',
		 autoClose: true
	});
	$(".tipPrivacy").jHelperTip({
		 trigger: "hover",
		 source: "ajax",
		 topOff: 10,
		 leftOff: 20,
		 type: "GET", 
		 url: 'includes/tips.cfm',
		 data: 'tip=privacy',
		 loadingText: 'loading...',
		 autoClose: true 
	});
			  
	$(".tipReturn").jHelperTip({
		 trigger: "hover",
		 source: "ajax",
		 topOff: 10,
		 leftOff: 20,
		 type: "GET", 
		 url: 'includes/tips.cfm',
		 data: 'tip=return',
		 loadingText: 'loading...',
		 autoClose: true 
	});
			  
	$(".tipEmail").jHelperTip({
		 trigger: "hover",
		 source: "ajax",
		 topOff: 10,
		 leftOff: 20,
		 type: "GET", 
		 url: 'includes/tips.cfm',
		 data: 'tip=email',
		 loadingText: 'loading...',
		 autoClose: true
	});
	
	$(".tippassword").jHelperTip({
		 trigger: "hover",
		 source: "ajax",
		 topOff: 10,
		 leftOff: 20,
		 type: "GET", 
		 url: 'includes/tips.cfm',
		 data: 'tip=password',
		 loadingText: 'loading...',
		 autoClose: true
	});
			  
	$(".tipCVV").jHelperTip({
		 trigger: "hover",
		 source: "ajax",
		 topOff: 10,
		 leftOff: 20,
		 type: "GET", 
		 url: 'includes/tips.cfm',
		 data: 'tip=cvv',
		 loadingText: 'loading...',
		 autoClose: true 
	});
			  
});
