function setCurrent( theId , secondId ) {
    if (el = document.getElementById('nav-' + theId)) {
        el.id = 'current';
    }
    if (uel = document.getElementById('unav-' + secondId)) {
        uel.id = 'ucurrent';    
    }
}