var mvid = null;
var os = "";
function menuShow(id)
{
  menuHide();
  var obj = document.getElementById("m"+id);
  os = obj.className;
  if (obj.className.indexOf("_current") == -1)
    obj.className += "_current";
  mvid = id;
  obj = document.getElementById("mm"+id);
  if (obj != null)
		obj.className = obj.className.replace(" hidden", " visible");
} // menuShow
function menuHide()
{
  if (mvid != null)
  {
    var obj = document.getElementById("mm"+mvid);
    if (obj != null)
    {
			obj.className = obj.className.replace(" visible", " hidden");
    } // if
		obj = document.getElementById("m"+mvid);
		obj.className = os;
	  mvid = null;
  } // if
} // menuHide
function menuImagesPreload()
{
	if (document.images)
	{
		new Image().src="/xds/img/menu/atopright.png";
		new Image().src="/xds/img/menu/atopleft.png";
		new Image().src="/xds/img/menu/atopright.png";
		new Image().src="/xds/img/menu/atopbg.png";
		new Image().src="/xds/img/menu/bg.png";
	}
} // menuImagesPreload
menuImagesPreload();

try
{
	if (window.top != window)
		window.top.location.replace(location.href);
} // try
catch (e)
{
} // catch
