/*
* Setup selective display/hiding of html chunks
*/
window.addEvent('domready', function() {
	if ($('extra_wand_yes')) {
		$('extra_wand_yes').addEvent('click', showExtraWandInputs);
		$('extra_wand_yes').addEvent('keypress', showExtraWandInputs);
		$('extra_wand_no').addEvent('click', showExtraWandInputs);
		$('extra_wand_no').addEvent('keypress', showExtraWandInputs);
		showExtraWandCustomInputs();
		showExtraWandInputs();
	}

	if ($('option_custom_wand')) {
		$('option_custom_wand').addEvent('click', showExtraWandCustomInputs);
		$('option_custom_wand').addEvent('keypress', showExtraWandCustomInputs);
		showExtraWandCustomInputs();
	}
});

var showExtraWandInputs = function(e) {
	if ($('extra_wand_yes').checked) {
		$('extra_wand_entry').removeClass('disabled');
	} else {
		$('extra_wand_entry').addClass('disabled');
	}
}

var showExtraWandCustomInputs = function(e) {
	if ($('option_custom_wand').checked) {
		$('wand_custom_entry').removeClass('disabled');
	} else {
		$('wand_custom_entry').addClass('disabled');
	}
}
