
function menuOvr(src,clrOver)
{
	if (!src.contains(event.fromElement))
	{
		src.style.cursor = 'hand';
		src.bgColor = clrOver;
		src.children.tags('A')[0].style.color = '#0000CC';
	}
}

function menuDwn(src,clrDwn)
{
	if (!src.contains(event.fromElement))
	{
		src.style.cursor = 'hand';
		src.bgColor = clrDwn;
		src.children.tags('A')[0].style.color = '#0000CC';
	}
}

function menuOut(src,clrOut)
{
	if (!src.contains(event.toElement))
	{
		src.style.cursor = 'default';
		src.bgColor = clrOut;
		src.children.tags('A')[0].style.color = '#0000CC';
	}
}