source: trunk/client/temi/bsitalia/menu/suckerfish.js@ 400

Last change on this file since 400 was 400, checked in by roby, 3 months ago
  • ADMIN

-- Migliorata la gestione di operatori e responsabili

  • CLIENT

-- Nuovo tema BSItalia realizzato dal CED di Capo d'Orlando
-- Sistemata la funzione del widget privacy
-- Varie modifiche di allineamento oggetti

File size: 497 bytes
Line 
1//son of a suckerfish dropdown - http://htmldog.com/articles/suckerfish/dropdowns/
2
3sfHover = function() {
4 var sfEls = document.getElementById("nav").getElementsByTagName("LI");
5 for (var i=0; i<sfEls.length; i++) {
6 sfEls[i].onmouseover=function() {
7 this.className+=" sfhover";
8 }
9 sfEls[i].onmouseout=function() {
10 this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
11 }
12 }
13}
14if (window.attachEvent) window.attachEvent("onload", sfHover);
Note: See TracBrowser for help on using the repository browser.