$(document).ready(function() {
	$(".quiz > ol > li .answer-button").click(function(event) {
		$(this).parent().find(".answer").slideToggle("slow");
	});
	
	$("#show-all-answers-button").click(function(event) {
		$(".answer").show();
	});
	
	$("#hide-all-answers-button").click(function(event) {
		$(".answer").hide();
	});
});
