<!-- Begin Dictionary Definitions

strTermId = '';

function showDefinition(strId)
{
    if (strId != strTermId) {
        jQuery('#dt-' + strTermId + ' a').removeClass('active');
        jQuery('#dt-' + strId + ' a').addClass('active');

        if (strTermId) {
            jQuery('#dd-' + strTermId).fadeOut(150, function() {
                jQuery('#dd-' + strId).fadeIn(150);
            });
        } else {
            jQuery('#dt-' + strId + ' a').addClass('active');
            jQuery('#dd-' + strId).fadeIn(150);
        }
        strTermId = strId;
    }
    return false;
}

// End Dictionary Definitions -->