jQuery(function( $ ){
	$("input[type=radio]").click(function() {
		if (
			$("input[name='q1']:checked").length > 0 &&
			$("input[name='q2']:checked").length > 0 &&
			$("input[name='q3']:checked").length > 0
		) {
			$("#submit").removeAttr('disabled');
		}
	});
	
	$("input#submit").click(function() {
		var queryString = 'search='+$("input[name='q1']:checked").val()+$("input[name='q2']:checked").val()+$("input[name='q3']:checked").val();
		$.ajax({
			type: "GET",
   		url: "search.php",
   		data: queryString,
   		success: function(html){
     		$("#searchResults").html(html);
   		}
 		});
	});
});