function showTab(id)
{
    
    // set all tabs inactive
    $('.Tabs li').each(function() {
        $(this).removeClass('Active');
    });
    
    // set the current tab active
    $('#Tab' + id).addClass('Active');
    
    $('.ContentMain > .Active').each(function () {
        $(this).removeClass('Active');
    });

    $('#' + id).each(function () {
        $(this).addClass('Active');
    });
    
    if (id != 'video') {
        $('.Left > .Sorting').each(function () {
            $(this).css('visibility', 'hidden');
            $(this).css('display', 'none');
        });
        $('.Left > .VideoLink').each(function () {
            $(this).css('visibility', 'visible');
            $(this).css('display', 'block');
        });
    } else {
        $('.Left > .Sorting').each(function () {
            $(this).css('visibility', 'visible');
            $(this).css('display', 'block');
        });
        $('.Left > .VideoLink').each(function () {
            $(this).css('visibility', 'hidden');
            $(this).css('display', 'none');
        });
    }
}
