$(function(){
	//クリック時に展開
	$('dl.faq dt a').click(function(){
		$(this).parents('dl.faq').each(function(){
			$(this).find('dd').slideToggle();
			return false;
		});
		return false;
	});
	
	//hashを元に展開
	var hash = location.hash.replace(/^#/, '');
	if(hash!=''){
		var t = $('dl#' + hash);
		if(t.length>0){
			t.find('dd').show();
			location.hash = hash;
		}
	}
});
