startList = function (){if(document.all && document.getElementById){_ids = new Array("nav","vin");for(j=0;j<_ids.length;j++){var navRoot = document.getElementById(_ids[j]);if(navRoot != null && typeof(navRoot) != "undefined"){for(i=0; i<navRoot.childNodes.length; i++){var node = navRoot.childNodes[i];if(node != null && typeof(node) != "undefined" && node.nodeName=="LI"){node.onmouseover=function(){this.className=this.className.replace(" over", ""); this.className+=" over";};node.onmouseout=function(){ this.className=this.className.replace(" over", "");}}}}}}};
window.onload = startList;
