// JavaScript Document
	  $(document).ready(function(){
	       $("#wenzhang>dd>dl>dd").hide();
	     $.each($("#wenzhang>dd>dl>dt"), function(){
			$(this).click(function(){
				$("#wenzhang>dd>dl>dd ").not($(this).next()).slideUp();
				$(this).next().slideToggle(500);
				//$(this).next().toggle();
			});
			});
	  });
