$(document).ready(function(){
	$('.no_response').click(function(){
                    if($(this).val() == "no") {
				window.location = "http://www.ptk.org/index.php/all_usa/ineligible";
		    }
        });

        $('#submit_survey').click(function(){
		var ctr = 0;
		var answers = 0;
                $("input:checked").each(function() {
                    if($(this).val() == "yes") {
			answers++;
		    }
                });

		if (answers < 11) { 
			$("#errors").show();
                } else {
			window.location = "http://www.ptk.org/index.php/all_usa/eligible";
		}
        });
});

