$(function() {
	// for each question, make question appear as a link, and toggle answer div
	$('div.faq_answer').hide();
	
	$('div.faq_question')
		.hover(
			function() {
				$(this).addClass('hover');
			},
			function() {
				$(this).removeClass('hover');
			}
		)
		.click(
			function() {
				$(this).next().slideToggle();
			}
		);
});