var j$ = jQuery; 
 
j$(function(){ 
  j$(".gNav").each(function(){ 
    j$("a.open", this).each(function(index){ 
      var $this = j$(this); 
  
      $this.next().hide(); 
 
      $this.click(function(){ 
        var params = {height:"toggle"}; 
        j$(this).next().animate(params).parent().siblings() 
          .children("ul:visible").animate(params);
        return false; 
      }); 
    }); 
  }); 
});
