
//----------------------------------------------------------------------
	
function setArticleBottomLoadingComments()
{
           if($('articleBottomLi').className == 'active')
                return;
                   
            $('articleBottomLi').className = 'active';
            $('membersBottomLi').className = '';
            $('changesListBottomLi').className = '';

           startTabsLoading();
}

//----------------------------------------------------------------------

function setMembersBottomLoadingComments()
{
           if($('membersBottomLi').className == 'active')
                return;

            $('articleBottomLi').className = '';
            $('membersBottomLi').className = 'active';
            $('changesListBottomLi').className = '';

           startTabsLoading();
}

//----------------------------------------------------------------------

function setChangesListLoadingComments()
{
           if($('changesListBottomLi').className == 'active')
                return;

            $('articleBottomLi').className = '';
            $('membersBottomLi').className = '';
            $('changesListBottomLi').className = 'active';

           startTabsLoading();
}

//----------------------------------------------------------------------

	
