function	rollover( menuitem )	{
	if ( ( id = document.getElementById( menuitem ) ) == null )
		return;
	else if ( menuitem == "MenuSO" )
		id.style.backgroundColor = "#2060ff";
	else
		id.style.backgroundColor = "#60a0f0";

	if ( ( id = document.getElementById( menuitem + 'a' ) ) == null )
		return;
	else if ( menuitem == "MenuSO" )
		id.style.backgroundColor = "#2060ff";
	else
		id.style.backgroundColor = "#60a0f0";

	return;
}

function	rolloff( menuitem )	{
	if ( ( id = document.getElementById( menuitem ) ) == null )
		return;
	else if ( menuitem == "MenuSO" )
		id.style.backgroundColor = "#ffc40d";
	else
		id.style.backgroundColor = "#0044ff";

	if ( ( id = document.getElementById( menuitem + 'a' ) ) == null )
		return;
	else if ( menuitem == "MenuSO" )
		id.style.backgroundColor = "#ffc40d";
	else
		id.style.backgroundColor = "#0044ff";
	return;
}

function	rolloff3( menuitem )	{
	if ( ( id = document.getElementById( menuitem ) ) == null )
		return;
	else if ( menuitem == "MenuSO" )
		id.style.backgroundColor = "#ffc40d";
	else
		id.style.backgroundColor = "#0022cc";

	if ( ( id = document.getElementById( menuitem + 'a' ) ) == null )
		return;
	else if ( menuitem == "MenuSO" )
		id.style.backgroundColor = "#ffc40d";
	else
		id.style.backgroundColor = "#0022cc";
	return;
}

