// JavaScript Document
    <!--
    // begin function.
    function toggle() {
        // Initialize our object data from our XHTML divs.	
        var bar = document.getElementById('sidebar');
        var barText = document.getElementById('sbText');
        var box = document.getElementById('content');
        // If the sidebar is expanded...
        if (bar.style.width == '300px') {
            // Collapse it by setting its width to 15px
            bar.style.width = '45px';
            // Hide the sbText div so that its text isn't visible or
            // repositioned.
            barText.style.display = 'none'; //none
            // Resize the content div to its new, expanded width.
            //box.style.width = '564px';
        // Otherwise, if the sidebar is already collapsed...
        } else {
            // Set the sidebar width back to 150.
            bar.style.width = '300px';
            // Make the sbText div visible again.
            barText.style.display = 'block';
            // Set the content div width back to 429.
            //box.style.width = '429px';
        }
    }
    // -->
