2 function Switch_Menu() {
3 vSwitch_Menu=!vSwitch_Menu;
4 SetMenuFolded(vSwitch_Menu);
6 function SetMenuFolded(on) {
8 $('#html-menu').removeClass('folded');
9 $('#content').removeClass('folded');
11 $('#html-menu').addClass('folded');
12 $('#content').addClass('folded');
16 SetMenuFolded(vSwitch_Menu);