
//----------------------------------------------------------------------
	
function setArticleBottomLoadingComments()
{
           if($('articleBottomCommentsLi').className == 'active')
                return;
                   
            $('articleBottomCommentsLi').className = 'active';
            $('favouritesBottomCommentsLi').className = '';
             $('friendsBottomCommentsLi').className = '';
             $('commentsBottomCommentsLi').className = '';

           startTabsLoading();
}

//----------------------------------------------------------------------

function setFavouritesBottomLoadingComments()
{
           if($('favouritesBottomCommentsLi').className == 'active')
                return;

            $('articleBottomCommentsLi').className = '';
            $('favouritesBottomCommentsLi').className = 'active';
            $('friendsBottomCommentsLi').className = '';
            $('commentsBottomCommentsLi').className = '';

           startTabsLoading();
}

//----------------------------------------------------------------------

function setFriendsBottomLoadingComments()
{
           if($('friendsBottomCommentsLi').className == 'active')
                return;

            $('articleBottomCommentsLi').className = '';
            $('favouritesBottomCommentsLi').className = '';
            $('friendsBottomCommentsLi').className = 'active';
            $('commentsBottomCommentsLi').className = '';

           startTabsLoading();
}
	
//----------------------------------------------------------------------

function setCommentsBottomLoadingComments()
{
           if($('commentsBottomCommentsLi').className == 'active')
                return;

            $('articleBottomCommentsLi').className = '';
            $('favouritesBottomCommentsLi').className = '';
            $('friendsBottomCommentsLi').className = '';
            $('commentsBottomCommentsLi').className = 'active';

           startTabsLoading();
}

//----------------------------------------------------------------------

function showLongDesc()
{
     $('userShortLongDesc').style.display = 'none';
     $('userLongDesc').style.display = 'block';
}

//----------------------------------------------------------------------
	
