function startList(){var c,a,b;if(document.all&&document.getElementById){c=document.getElementById("nav");if(c){a=c.getElementsByTagName("LI")}}if(!a){return}for(b=0;b<a.length;b++){node=a[b];node.onmouseover=function(){this.className+=" over"};node.onmouseout=function(){this.className=this.className.replace(" over","")}}}if(document.all&&document.getElementById){window.onload=startList};