	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(){
					j$(this).next().toggle().parent().siblings()
						.children("dl:visible").hide();
					return false;
				});
			});
		});
	});
