Vanilla 1.1.9 is a product of Lussumo. More Information: Documentation, Community Support.
/* ---[ Menu principal ]--------------------- */
sfHover = function() {
var sfEls = document.getElementById("nav").getElementsByTagName("LI");
for (var i=0; i<sfEls.length; i++) {
sfEls[i].onmouseover=function() {
toggleSelects('hide');
this.className+=" over";
}
sfEls[i].onmouseout=function() {
toggleSelects('show');
this.className=this.className.replace(new RegExp(" over\\b"), "");
}
}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
/* ---[ Menu contextuel - 2e niveau ]--------------------- */
sfHover = function() {
var sfEls = document.getElementById("subNav").getElementsByTagName("LI");
for (var i=0; i<sfEls.length; i++) {
sfEls[i].onmouseover=function() {
toggleSelects('hide');
this.className+=" over";
}
sfEls[i].onmouseout=function() {
toggleSelects('show');
this.className=this.className.replace(new RegExp(" over\\b"), "");
}
}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
function toggleSelects(action) {
var selects = document.getElementsByTagName('select');
if(action == 'hide') {
for(i=0; i < selects.length; i++) {
selects[i].style.display='none';
}
} else if(action == 'show') {
for(i=0; i < selects.length; i++) {
selects[i].style.display='';
}
}
}
1 to 10 of 10