// initialise menu
jQuery(document).ready(function() {
    $('#menu').menu_toggle_adder(
        {
            animate_toggle: 'no', /* 'yes' or' no'. Use "slide down" animation to show and hide nested lists. */
            highlight_selected_link: 'no', /*  'yes' or 'no'. Add "menu_selected" class to the link (and it's parent) that matches the current page name. */
            toggle: 'static/images/menu/toggle.gif', /*  Path to the toggle image. This is the image that shows when nested ul is hidden. */
            toggled: 'static/images/menu/toggled.gif', /*  Path to the toggled image. This is the image that shows when nested ul is visible. */
            toggle_selected: 'static/images/menu/toggle_selected.gif', /*  Path to the selected, toggle image. This is the image that shows when nested ul is hidden and the link url matches the current page name. */
            toggled_selected: 'static/images/menu/toggled_selected.gif' /*  Path to the selected, toggled image. This is the image that shows when nested ul is visible and the link url matches the current page name. */
        }
    );
});
