$(document).on('domready', function()
{
    function collapseShow(oLink)
    {
        gDoc.get('#latest-video').style.display = '';
        oLink.first().remove();
        oLink.append(document.createTextNode('(hide)'));
        oLink.onclick = function()
        {
            return collapseHide(this);
        }

        return false;
    }

    function collapseHide(oLink)
    {
        gDoc.get('#latest-video').style.display = 'none';
        oLink.first().remove();
        oLink.append(document.createTextNode('(show)'));
        oLink.onclick = function()
        {
            return collapseShow(this);
        }

        return false;
    }

    gDoc.get('#latest-video-collapse').style.display = 'inline';
    gDoc.get('#latest-video').style.display = 'none';

    gDoc.get('#latest-video-collapse').onclick = function()
    {
        return collapseShow(this);
    }
});