$(function() {
	var html = ' \
<a id="email-usage-button" href="#">[ more info ]</a> \
<div id="email-usage"> \
	<p>Your email address will be used for LTC related business only.  LTC does not share email addresses or other personal information with 3rd party companies, research companies, nor do we sell the email addresses of customers to any person or company.</p> \
</div> \
';
	$('#email-label-section').append(html);
	$('#email-usage-button').hover(function() {
		$('#email-usage p').show();
	}, function() {
		$('#email-usage p').hide();
	});

//		$('.activity-indicator')
//				.hide()
//				.ajaxStart(function() { $(this).show(); })
//				.ajaxComplete(function() { $(this).hide(); });
});
