// Class Question

Question = function(ident) {
	this.ident = ident;
	this.answered = false;
	this.choice = -1;
}

new Question();

Question.prototype.answer = function(choice) {
	this.answered = true;
	this.choice = choice - 1;
}

Question.prototype.clearAnswer = function() {
	this.answered = false;
	this.choice = -1;
}
