﻿/*****************************************************************************
NAME:			_tt (tree toggle)
PARAMETERS:		o - DOM element (<a> tag contained by <li> tag and followed by an <img> tag)
DESCRIPTION:	toggles opened/closed state for a banch (changes class for containing <li> tag
NOTE:			short cryptic name "_tt" used to decrease the size of the HTML
				in a tree
*****************************************************************************/
function _tt(o)
	{
    try
		{
		if ('rhto'==o.parentNode.className)
			{		
			o.parentNode.className='rhtc';
			o.firstChild.src='WebResource.axd?d=6MNO9K11QV5bTrS4i-pTuul7wmGMGAwCQ_nbhaDF50Wfpl64YMt5xzVbdIA9G3gy7evgN7q8wRWBotxhAMrOag2&t=634091780400000000';
			o.firstChild.alt='expand';
			}
		else
			{
			o.parentNode.className='rhto';
			o.firstChild.src='WebResource.axd?d=6MNO9K11QV5bTrS4i-pTuul7wmGMGAwCQ_nbhaDF50Wfpl64YMt5xzVbdIA9G3gyTQqFwddcgr6CshnwmEARiw2&t=634091780400000000';
			o.firstChild.alt='collapse';
			}
		}
	catch(err)
		{
		}
    }

