      var lastSubNav = null;
      
      function showSubNav(category, indent)
      {
        _subnav = '';
        _color = '';
        if (category == 'about')
        {
          _subnav = '         <a href="/about/faculty-staff/">Faculty/Staff</a> ' +
                    '&middot; <a href="/about/policies/">Policies</a>' +
                    '&middot; <a href="/about/location/">Location</a>' +
                    '&middot; <a href="/about/tuition/">Tuition</a>' +
                    '&middot; <a href="/about/testimonials/">Testimonials</a>' +
                    '&middot; <a href="/about/newsletter/">Newsletter</a>';
          _color = '#e5352e';
        }
        
        if (category == 'schedule')
        {
          _subnav = '         <a href="/schedule/children/">Children\'s Program 3-8 yrs</a> ' +
                    '&middot; <a href="/schedule/core-youth/">Core Youth Program 9-19 yrs</a>' +
                    '&middot; <a href="/schedule/adult-open/">Adult Open</a>' +
                    '&middot; <a href="/schedule/intensives-workshops/">Intensives/Workshops</a>';
          _color = '#dc71a1';
        }
        
        document.getElementById('subnav').innerHTML = _subnav;
        document.getElementById('subnav').style.paddingLeft = indent + 'px';
        document.getElementById('navigation').style.backgroundColor = _color;
        
        if (lastSubNav)
          lastSubNav.className = '';
          
        lastSubNav = document.getElementById('nav-' + category)
        if (lastSubNav)
        {
          lastSubNav.className = 'active';
          lastSubNav.setAttribute('class', 'active');
          updateLinks();
        }
      }