function imageBars() {
	if(data!=null && data.questions!=null && data.questions[question]!=null && data.questions[question].kind=="B") {
		$("#answer1").unbind();
		$("#answer2").bind("click", function() {
			setAnswer("");
			setAnswer("J");
			return false;
		}).mouseover(function(){
			$(this).removeAttr("nohref");
			$(this).attr("href", "");
		});
		$("#answer3").bind("click", function() {
			setAnswer("");
			setAnswer("N");
			return false;
		}).mouseover(function(){
			$(this).removeAttr("nohref");
			$(this).attr("href", "");
		});
	} else if(data!=null && data.questions!=null && data.questions[question]!=null && data.questions[question].kind=="M") {
		$("#answer1").bind("click", function() {
			setAnswer("");
			setAnswer("A");
			return false;
		}).mouseover(function(){
			$(this).removeAttr("nohref");
			$(this).attr("href", "");
		});
		$("#answer2").bind("click", function() {
			setAnswer("");
			setAnswer("B");
			return false;
		}).mouseover(function(){
			$(this).removeAttr("nohref");
			$(this).attr("href", "");
		});
		$("#answer3").bind("click", function() {
			setAnswer("");
			setAnswer("C");
			return false;
		}).mouseover(function(){
			$(this).removeAttr("nohref");
			$(this).attr("href", "");
		});
	} else {
		$("#answer1").unbind().mouseover(function(){
			$(this).removeAttr("href");
			$(this).attr("nohref", "nohref");
		});
		$("#answer2").unbind().mouseover(function(){
			$(this).removeAttr("href");
			$(this).attr("nohref", "nohref");
		});
		$("#answer3").unbind().mouseover(function(){
			$(this).removeAttr("href");
			$(this).attr("nohref", "nohref");
		});
	}
}