var arrMenuItems = new Array();

function rollon()
	{
	if (event.srcElement.className == "NORMAL")
		{
		event.srcElement.className = "ACTIVE";
		event.srcElement.onmouseout = rolloff;
		}
	}

function rolloff()
	{
	event.srcElement.className = "NORMAL";
	}

document.onmouseover = rollon;

function MenuItem(ID, StatusBarText, Location)
	{
	this.ID = ID;
	this.StatusBarText = StatusBarText;
	this.Location = Location;
	}
