function mousein(menyy)
{
	if (document.getElementById)
	{
	document.getElementById(menyy).bgColor = "#d0d0d1";
	}

	else if (document.layers)
	{
//    document.menu1.bgColor = "#d0d0d1";
    }

}

function mouseout(menyy)
{
	if (document.getElementById)
	{
	document.getElementById(menyy).bgColor = "#F2F0DB";
	}

	else if (document.layers)
	{
//    document.menu1.bgColor = "#F2F0DB";
    }
}
