<!-- copyright 2003, Anders Nilsson, All rights reserved. Unauthorized copying/modification not allowed without prior prewritten agreement. -->
function GetObject(name)
{
	var obj;
	if (document.all)
	{
		obj=eval("document.all."+name+".style");
	}
	else
	{
		obj=eval("document."+name);
	}
	return obj;
}

function SetTheColor(name, color)
{
	var obj;
	obj=GetObject(name);
	obj.background=color;
}

function MenuOver(name)
{
	SetTheColor(name, "#8BB5DD");
}

function MenuOut(name)
{
	SetTheColor(name, "#6098CF");
}
