﻿function HideAllText() {
if($('#StudioText').length > 0)
{
    $('#StudioText').css('display', 'none');
}
if ($('#KarenText').length > 0) {
    $('#KarenText').css('display', 'none');
}
if ($('#MichaelText').length > 0) {
    $('#MichaelText').css('display', 'none');
}
if ($('#NewtonText').length > 0) {
    $('#NewtonText').css('display', 'none');
}
}

function ShowTextSection(sectionName) {
    HideAllText();
    if ($(sectionName).length > 0) {
        $(sectionName).css('display', 'block');
    }
}