source: _old/www/js/menu.js @ 743cc4f

Last change on this file since 743cc4f was 57728c1, checked in by Mateusz Hromada <ruanda@…>, 15 years ago

Move old files to _old dir.

  • Property mode set to 100644
File size: 325 bytes
Line 
1function menu_select_element(el_menu, is_selected) {
2
3  if(is_selected) {
4    el_menu.style.background = '#00FF66';
5    el_menu.style.cursor = 'hand';  // for IE
6    el_menu.style.cursor = 'pointer';
7  }
8  else {
9    el_menu.style.background = '#CCFF99';
10    el_menu.style.cursor = 'default';
11  }
12  return true;
13}
Note: See TracBrowser for help on using the repository browser.