        $(function(){
			$('body').addClass('js');
			
			// Toggle the Q&A
			$('p.question').click(function(){
				$(this).next('p.answer').toggle();
			});
        });