
	var j$ = jQuery;

	j$(function(){
		j$(".acc > li > a").each(function(index){
			var $this = j$(this);

			if(index > 0) $this.next().hide();

			$this.click(function(){
				j$(this).next().toggle().parent().siblings()
					.children("ul:visible").hide();
				return false;
			});
		});

	});
