var lh = null;

function highlight(o)
{
	if (o == lh) return;
	o.style.fontWeight='bold';

	if (lh != null)
	{
		lh.style.fontWeight='normal';
	}

	lh = o;
}

function myOnLoad()
{
	if (document.all)
	{
		highlight(document.all["firstLink"]);
	}
}
