jQuery(function($) {
	var promptHtml = $('.contact-member').html();

	$('.contact-member').find('.get-info').live('click', function() {
		$(this.parentNode).addClass('contact-member-prompt').html(
			'Are you at least 18 years old and serious about generating cash from home? <button class="yes">Yes!</button> <button class="no">No</button>'
		);
	}).end().find('.yes').live('click', function() {
		$(this.parentNode).text('Loading...');
		$('.contact-member').load('/about/contact-member', function() {
			$(this).removeClass('contact-member-prompt');
		});
	}).end().find('.no').live('click', function() {
		$(this.parentNode).html('SurfMoney is only open to serious people who are at least 18 years old. <button class="reset">OK</button>');
	}).end().find('.reset').live('click', function() {
		$(this.parentNode).removeClass('contact-member-prompt').html(promptHtml);
	});
});

