var help_toggle_state = false;

$(document).ready(function() {
	$('#yesbtn').click(function() {
		$('#nobtn').css('background-color', '#fff');
		$('#newbtn').css('background-color', '#fff');
		$(this).css('background-color', '#def');
		$('#no').hide();
		$('#new').hide();
		$('#yes').show();
	});
	$('#nobtn').click(function() {
		$('#yesbtn').css('background-color', '#fff');
		$('#newbtn').css('background-color', '#fff');
		$(this).css('background-color', '#def');
		$('#yes').hide();
		$('#new').hide();
		$('#no').show();
	});
	$('#newbtn').click(function() {
		$('#nobtn').css('background-color', '#fff');
		$('#yesbtn').css('background-color', '#fff');
		$(this).css('background-color', '#def');
		$('#no').hide();
		$('#yes').hide();
		$('#new').show();
	});
	$('#acct-linking01').click(function() {
		if (help_toggle_state) $('#acct-linking02').hide();
		else $('#acct-linking02').show();
		help_toggle_state = !help_toggle_state;
		// not sure why this doesn't work
		//$('#acct-linking02').toggle();
	});
});
