

$(document).ready(function(){
	
	$('.ans').css({display:'none'});
	
	$('.quest').click(function(){
		//$('.ans').animate({height:'hide'},'fast');
		if ($(this).next().hasClass('act')) $(this).next().removeClass('act').animate({height:'hide'},'fast');
		else $(this).next().addClass('act').animate({height:'show'},'fast');
	}).css({cursor:'pointer'});
	
});

