// JavaScript Document
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('normal');  
 
      $this.mouseover(function(){  
        j$(this).next().toggle('normal').parent().siblings()  
          .children("ul:visible").hide('normal');   
        return false;  
      });  
    });  
  });  
}); 