// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
$(document).ready(function(){
	$('input#registration_gives_no_speech').click(function(){
		if(this.checked){
			$('#registration_contacted_conveners').attr('checked', false);
			$('#registration_gives_speech').attr('checked', false);
		}
	});

	$('input#registration_gives_speech').click(function(){
		if(this.checked){
			$('#registration_gives_no_speech').attr('checked', false);
		}
	});
	$('input#registration_contacted_conveners').click(function(){
		if(this.checked){
			$('#registration_gives_no_speech').attr('checked', false);
		}
	});
});