function show(index){var a=document.getElementById("maintopmenu");var b=document.getElementById("topsubmenu");if(!a||!b){return;}while(b.firstChild){b.removeChild(b.firstChild);}var c=a.getElementsByTagName('ul')[index].cloneNode(true);c.style.backgroundColor=b.style.backgroundColor;c.style.visibility='visible';c.style.display='inline';c.style.margin='0px';c.style.padding='0px';c.style.listStyleType='none';var d=c.getElementsByTagName('li');for(var f=0;f<d.length;++f){d[f].style.display='inline';}b.appendChild(c);}
