////////////////////////////////////////////////////////////////////////////////// top menu

try
{
	var topMenu = new PopupMenu('topMenu');
	var lefty = findLeft('bar');
	var toppy = findTop('bar');

	if (toppy == null) { toppy = 79; }			// FOR IE 5.01

	// Calls a function defined in the Top Menu XSL, using the nav structure
	LoadTopMenuStructure(topMenu);
}
catch(e)
{
	window.status = "Top menu not loaded";
}



///////////////////////////////////////////////////////////////////////////  Display menus

	try {topMenu.update(true);} catch(e){}	

	var popOldOR = window.onresize;
	window.onresize = function()
	{
		if (popOldOR) popOldOR();
		try {topMenu.position();} catch(e){}
	}

	window.onscroll = function()
	{
		try {topMenu.position();} catch(e){}
	}

