﻿$(function()
{
    $('a[id$=lnkLanguage]')
    .css({ 'color': 'black', 'text-decoration': 'none', 'cursor': 'default', 'font-size': 'smaller' })
    .text('[No disponible en español]');

    $('#printVersionLink').click(function()
    {
        // this is tricky - another click function
        // will have already switched the innerHTML
        // so I've commented the following

        if (this.innerHTML == "Print Version")
        {
            // The user is looking at Graphic Version

            $('#tblGraphic').css({ 'display': '' });
        }
        else
        {
            // The user is looking at Print Version
            $('#tblGraphic').css({'display':'none'});
        }
    });

});


