$(document).ready(function(){
	for (i = 1; i < 100; i++) {
	  if ($("#question" + i).length > 0) {
			$("#question" + i).hide();
		} else {
			break;
		}
  }
  
  $("#phantom").hide();
  
});

function nextquestion(question_id) {
	$("#question" + question_id).hide();
	question_id++;
	if ($("#question" + question_id).length > 0) {
		$("#question" + question_id).show();
	}else {
    $("#germs").submit();
	$("#quiz_questions").hide();
	$("#phantom").show();
	}
}
