(function ($) {
  $(function() {
    // menus
    $('ul.sf-menu').superfish();
    // init togglers common to all pages .help .toggle is toggler for .help .helpContents
    $('div.help').each(function() {
      var $this = $(this);
      var $toggle = $this.find('.toggle');
      var $target = $this.find('.helpContents');
      $toggle.toggler({toToggle: $target});
    });
  });
})(jQuery);

