1 $(document).ready(function() {
2 $('.menubox').click(function() {
3 var the_id = $(this).attr('id');
4 the_id = the_id.replace('checkbox_', '');
5 if ($(this).attr('checked')) {
6 $('#' + the_id).css('color', '#c0c0c0');
8 $('#' + the_id).css('color', '#000000');
12 $('#usergroup').change(function() {
13 if ($(this).val() == '') return;
14 $("#editmenu_form").trigger('submit');