<!--
	var lngLastMenuOpen = 0;
	var objTimer;
	function DisplayLeftMenuNote( lngID )
	{
		if ( lngLastMenuOpen != lngID )
		{
			HideLeftMenuNoteDo( lngLastMenuOpen );
		}
		if ( objNote = document.getElementById( 'leftMenuNote' + lngID ) )
		{
			objNote.style.display = 'block';
		}
		lngLastMenuOpen = lngID;
	}
	
	function HideLeftMenuNote( lngID )
	{
		//set the timeout to hide the open dropdown menu
		objTimer = setTimeout( 'HideLeftMenuNoteDo(' + lngID + ')', 1500 );
	}
	
	function HideLeftMenuNoteDo( lngID )
	{
		if ( objNote = document.getElementById( 'leftMenuNote' + lngID ) )
		{
			objNote.style.display = 'none';
		}
	}
	
	function LeftMenuNoteActive()
	{
		//clear any timeout set by the HideSubNav function
		clearTimeout( objTimer );
	}
//-->