//Static section completes
var isNS4=navigator.appName=='Netscape'&&!isDOM?1:0;

if (!isNS4)
{
 // Write menus now in non-NS4 browsers, by calling the "Fast" mode .update(true) method.
 govMenu.update(true);
// siteMenu.update(true);
}
else
{
 // For Netscape 4, back up the old onload function and make a new one to update our menus.
 // This is the regular "Dynamic" mode menu update, it works in IE and NS6 too if required.
 var popOldOL = window.onload;
 window.onload = function()
 {
  if (popOldOL) popOldOL();
  govMenu.update();
 // siteMenu.update();
 }
}


///

		
