$(document).ready(function(){
	$('.tx-hmrfaq-pi1 dl dd').hide();
	$('.tx-hmrfaq-pi1 dl').hide();
	
	$('.tx-hmrfaq-pi1 .faq-category h3').click(function(){
/* 		$('.tx-hmrfaq-pi1 dl').hide(); */
		$(this).parent().children('dl').toggle();
	});
	
	$('.tx-hmrfaq-pi1 .faq-category dt').click(function(){
		$(this).next().toggle();
	});

});