function activateQuickLinks(){
  $('#quick_links .menu>li>a').each(function(){
    $(this).click(function(){
      var currentContainer = this.parentNode;
      $('.menu>li', $(this.parentNode.parentNode.parentNode)).each(function(){
        if (!(this === currentContainer)){$(this).removeClass('open');}
      });
      $(this.parentNode).toggleClass('open');
      return false;
    });
  });
}
