source: www/js/menu.js @ 4518a0b

Last change on this file since 4518a0b was 843c58d, checked in by pawelk <pawelk@…>, 16 years ago

Wgrałem biezaca wersje strony www.

git-svn-id: svn://atos.wmid.amu.edu.pl/utt@53 e293616e-ec6a-49c2-aa92-f4a8b91c5d16

  • 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.