var timeOut;

function collapseExpandSummary(collapseText, expandText)
{
	clearTimeout(timeOut);

	var detailTitle;
	var detailInfoStyle;
	var iStr;

	if (document.getElementById('summaryLink').innerHTML == expandText)
	{
		document.getElementById('summaryLink').innerHTML = collapseText;
		document.getElementById('detailDescriptionDiv').style.display = 'none';

		for (var i = 1; i <= 23; i++)
		{
			iStr = String(i); if (iStr.length == 1) { iStr = '0' + iStr; }

			detailTitle = document.getElementById('detailTitleDiv' + iStr);
			detailTitle.style.cursor = 'auto';
			detailTitle.onmouseover = function () { }
			detailTitle.onmouseout = function () { }

			detailInfoStyle = document.getElementById('detailInfosDiv' + iStr).style;
			detailInfoStyle.display = 'block';
			detailInfoStyle.backgroundImage = '';
			detailInfoStyle.marginLeft = '16px';
			detailInfoStyle.marginBottom = '8px';
			detailInfoStyle.paddingTop = "0px";
			detailInfoStyle.paddingBottom = "0px";
			detailInfoStyle.paddingLeft = '0px';
			detailInfoStyle.paddingRight = '0px';

			document.getElementById('detailBottomDiv' + iStr).style.display = 'none';
		}
	}
	else
	{
		document.getElementById('summaryLink').innerHTML = expandText;
		document.getElementById('detailDescriptionDiv').style.display = 'block';

		for (var i = 1; i <= 23; i++)
		{
			iStr = String(i); if (iStr.length == 1) { iStr = '0' + iStr; }

			detailTitle = document.getElementById('detailTitleDiv' + iStr);
			detailTitle.style.cursor = 'help';

			detailInfoStyle = document.getElementById('detailInfosDiv' + iStr).style;
			detailInfoStyle.display = 'none';
			detailInfoStyle.backgroundImage = 'url(../images/tooltip.gif)';
			detailInfoStyle.marginLeft = '4px';
			detailInfoStyle.marginBottom = '0px';
			detailInfoStyle.paddingTop = '21px';
			detailInfoStyle.paddingBottom = '2px';
			detailInfoStyle.paddingLeft = '11px';
			detailInfoStyle.paddingRight = '11px';

			document.getElementById('detailBottomDiv' + iStr).style.display = 'none';

			detailTitle.onmouseover = function ()
			{
				clearTimeout(timeOut);
				var idStr = this.id.substr(this.id.length - 2, 2);
				timeOut = setTimeout("document.getElementById('detailInfosDiv" + idStr + "').style.display = 'block'; document.getElementById('detailBottomDiv" + idStr + "').style.display = 'block';", 550);
			}
			detailTitle.onmouseout = function ()
			{
				clearTimeout(timeOut);
				var idStr = this.id.substr(this.id.length - 2, 2);
				document.getElementById('detailInfosDiv' + idStr).style.display = 'none';
				document.getElementById('detailBottomDiv' + idStr).style.display = 'none';
			}
		}
	}
}

window.onload = function ()
{
	document.getElementById('summaryLink').style.visibility = 'visible';
	document.getElementById('summaryLink').onclick();
}

