$('#questions').ready(function(){

	for (i = 1; i < 100; i++) {
	  if ($('#question' + i).length > 0) {
			$('#question' + i).hide();
		} else {
			break;
		}
  }
	if ($('#html_code').length > 0) {
		$('#html_code').hide();
	}
	if ($('#answer_key').length > 0) {
		$('#answer_key').hide();
	}

	
});


function transition(question_id) {
	$('#question' + question_id).fadeOut();
	question_id++;
	if ($('#question' + question_id).length > 0) {
		$('#question' + question_id).fadeIn();
	} else {
    $('#quizform').submit();
	}

}
