// JavaScript Document
// start with answers hidden
$(document).ready(function() {
	$('.answer').hide();
});

// when question is clicked, show the following answer
$(document).ready(function() {
	$('.question').click(function() {
		$(this).toggleClass('question-click');
		$(this).next().animate({'height': 'toggle', 'opacity': 'toggle'},'medium');
	});
});

