$(document).ready(function() {
	$("h2 input").click(function() {
		theClass = $(this).attr("id");
		
		if ($(this).is(":checked")) {
			$("." + theClass).attr("checked","checked");
		} else {
			$("." + theClass).each(function() {
				$(this)[0].checked = $(this)[0].defaultChecked;
			});
		}
	});
	
	$("#gosubmit").attr("disabled","disabled");
	$("#goterms").click(function() {
		if ($(this).is(":checked")) {
			$("#gosubmit").attr("disabled","");
		} else {
			$("#gosubmit").attr("disabled","disabled");
		}
	});
});
