$(document).ready(function() {
	
	$('.choiceRadio').change(function() {
	  $(this).siblings('.choiceRadio').each(function(index) {				
		$(this).attr('checked', '');
	  });
	  /*$('.choiceRadio').each(function() {
		$(this).removeAttr('disabled');
	  });
	  
	  $('.itemBot').each(function(index) {
		$(this).children('.choiceRadio').each(function(index) {
		  if ( $(this).attr('checked') )
		  {
			$(this).siblings('.choiceRadio').each(function(index) {				
			  $(this).attr('checked', '');
			});
		  }
		});
	  });*/
	});
	
	$("form").submit(function() {
	  if ($("input[name='choice1']:checked").val()&&$("input[name='choice2']:checked").val()&&$("input[name='choice3']:checked").val()) {
        return true;
      }
      alert("You must select a 1st, 2nd and 3rd choice.");
      return false;
    });


 });

