$(function(){
	$(".otherTopic").hide();
	$(".firstTopic").show();
	$(".topics .trigger").click(function(){
		$("#section .topics div ul.firstTopic").toggle();
		$(this).toggleClass("active"),
		$(".otherTopic").slideToggle("fast");
	});
})

