jQuery(document).ready(function($) {
	$(".answer")
		.not(".answer:first")
		.hide();

	$("#qanda .question").click(function(){
		$("#qanda .answer").not($(this).next()).slideUp();
		$(this).next().slideToggle();
	});

	$(".question").hover(function(){
		$(this).css("cursor","pointer");
	},function(){
		$(this).css("cursor","default");
	});

	$(".answer").each(function(){
		$(this).css("height",$(this).height()+40+"px");
	});

});
