<!--

function initOther()
{
	otherMenu = new Menu("Other", -1, 0);
	otherMenu.speed = 10;
	otherMenu.display = displayOther;
	otherMenu.hide = hideOther;
	otherMenu.onHidden = onHiddenOther;
	otherMenu.onVisible = onVisibleOther;
}

function displayOther()
{
	cancelHide();
	this.visible = true;
	workMenu.hide();
	aboutMenu.hide();
	orderMenu.hide();
	otherMenu.scrollRight();
}

function hideOther() { otherMenu.scrollLeft (); }
function onVisibleOther() { this.visible = true; }
function onHiddenOther()  { this.visible = false; }

//-->
