/*
$(function(){
$('.faqbox dl dt a').css('display') == 'none';
});

$(function(){
	$('.faqbox dl dt a').click(function(){
	var toggleElm = $(this).parent().next('dl dd')
		if (toggleElm.css('display') == 'none') {
			toggleElm
				.animate(
					{height: 'show', opacity: 'show'}, 500, 'linear')
				.siblings('dd:visible').slideUp(500);
		} else {
			toggleElm.animate(
				{height: 'hide', opacity: 'hide'}, 500, 'swing')}
		return false;
	});
});

*/

var j$ = jQuery;

j$(function(){
	j$(".acc").each(function(){
		j$("li > a", this).each(function(index){
			var $this = j$(this);

			if(index > 0) $this.next().hide();

			$this.click(function(){
				var params = {height:"toggle", opacity:"toggle", duration: "nomal"};
			j$(this).next().toggle().parent().siblings().children("ul:visible").hide();
			j$(this).css("height",$(this).height()+"px");
				return false;
			});
		});
	});
});
