// JavaScript Document

	 $(function(){
			$("#qa dd").css("display","none");
			
			$("#qa dt").click(function(){
				if(($(this).next().css("display"))=="none"){
					$(this).next().fadeIn("normal");
				}
				else{
					$(this).next().hide();
				}
				$(this).toggleClass("open");
			});
			
			btnList = $("#qa dd .closebtn")
			btnList.css("cursor","pointer");
			btnList.click(function(){
				$(this).parent().parent().hide();
				$(this).parent().parent().prev().toggleClass("open");
			});	
	 });