function expandPage( e ) {
    if( e.target ) {
      src = e.target;
    }
    else {
      src = window.event.srcElement;
    }

    srcList = src.parentNode;
    childList = null;

    for( i = 0; i < srcList.childNodes.length; i++ ) {
      if( srcList.childNodes[i].nodeName.toLowerCase() == 'ul' ) {
        childList = srcList.childNodes[i];
      }
    }

    if( src.getAttribute( 'class' ) == 'collapsArch hide' ) {
      childList.style.display = 'none';
      src.setAttribute('class','collapsArch show');
      src.setAttribute('title','click to expand');
      src.innerHTML='$expand&nbsp;';
    }
    else {
      childList.style.display = '';
      src.setAttribute('class','collapsArch hide');
      src.setAttribute('title','click to collapse');
      src.innerHTML='$collapse&nbsp;';
    }

    if( e.preventDefault ) {
      e.preventDefault();
    }

    return false;
  };
