function mo(elid)
{
	if(page != elid)
	{
		document.getElementById(elid).style.backgroundColor = '#005533';
	}
}

function mout(elid)
{
	if(page != elid)
	{
		document.getElementById(elid).style.backgroundColor = 'transparent';
	}
}