// JavaScript Document
 var j$ = jQuery; 
j$(function(){ 
   j$(".dd_top").each(function(){ 
     j$(this).each(function(index){ 
       var $this = j$(this); 
  
       if(index > 0) $this.next().hide(); 
  
       $this.click(function(){
			var params = {height:"toggle"}; 
         j$(this).next().animate(params).parent().siblings() 
           .children(".accdi:visible").animate(params);
         return false; 
       }); 
     }); 
   }); 
 }); 
