/*function topNav() {

 var topNav = document.getElementById('topNav').getElementsByTagName('li')
 
 for ( i=0; i<topNav.length; i++ ) {
  
  topNav[i].onmouseover = function () { this.className='selected' };
  topNav[i].onmouseout = function () { this.className='' };
 
 }

}*/