$(document).ready(function() { 
	$('.answer').hide();
	$('.question').toggle(function() {
		$(this).next().slideDown(200);
		$(this).removeClass('question').addClass('answer');
		$(this).next().removeClass('answer');
		$(this).next().css('padding-left','15px');
		$(this).css('cursor','pointer');
		$(this).next().css('font-size','14px');
	},
	function() {
		$(this).next().slideUp(200);
		$(this).removeClass('answer').addClass('question');		
	});
});

