﻿function showProfile() {
    $('#p-tab-upcoming').hide();
    $('#p-tab-profile').show();

    $('#img-tab-profile')
        .attr('src', CONFIG.PATHS.IMG + 'profile-tab-player-active3.png');
    if($('#img-tab-upcoming').attr('src').toLowerCase().indexOf("-upcoming-") >= 0)
        $('#img-tab-upcoming').attr('src', CONFIG.PATHS.IMG + 'profile-tab-upcoming-inactive3.png');
    else
        $('#img-tab-upcoming').attr('src', CONFIG.PATHS.IMG + 'profile-tab-game-log-inactive.png');
    return false;
}

function showUpcoming() {
    $('#p-tab-profile').hide();
    $('#p-tab-upcoming').show();

    $('#img-tab-profile')
        .attr('src', CONFIG.PATHS.IMG + 'profile-tab-player-inactive3.png');
    if($('#img-tab-upcoming').attr('src').toLowerCase().indexOf("-upcoming-") >= 0)
        $('#img-tab-upcoming').attr('src', CONFIG.PATHS.IMG + 'profile-tab-upcoming-active3.png');
    else
        $('#img-tab-upcoming').attr('src', CONFIG.PATHS.IMG + 'profile-tab-game-log.png');
    return false;
}

