/*-------------------------------------------------------+
| Horizontal Navigation Infusion for PHP-Fusion
| Copyright © 2011 bartek124
| http://www.bartek124.net/
+--------------------------------------------------------+
| Filename: horizontal_navigation_panel.jquery.js
| Author: bartek124
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at www.gnu.org/licenses/agpl.html. Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/

$(function() {
    $('li.hnp-hidden h2').click(function() {
        $(this).parent().find('ul').slideToggle();
    });
});
