/**
 * FAQ
 */
$("div.q").toggle(function() {
	$("div.a").hide();
	$(this).siblings("div.a").show();
}, function() {
	$(this).siblings("div.a").hide();
});