current_li = "";
$(document).ready(function(){
	i=0;
	$("#faq_list_effect li").each(function(){
		if(i)$(this.getElementsByTagName("div")[0]).css("display","none");
		i++;
		$(this).click(function(){
			if(current_li!=this){
				current_li = this;
				$("#faq_list_effect li").each(function(){
					if(this!=current_li){
						$(this.getElementsByTagName("div")[0]).slideUp("slow");
						$(this.getElementsByTagName("h3")[0]).removeClass("true");
					}
				});
				$(this.getElementsByTagName("div")[0]).slideDown("slow");
				$(this.getElementsByTagName("h3")[0]).addClass("true");
			}
		});
	});
});