$(document).ready(function(){
	
	$('#faq .answer').hide();

	$('.question a').click(function() {
		$(this).next(".answer").slideToggle();
	});

});

