function mv(oElem)
{
	oElem.style.background = "transparent";
	oElem.style.color = "#fff";
	setLinkcolor(oElem, "#fff");
}

function mt(oElem)
{
	oElem.style.background = "#fff";
	oElem.style.color = "#333";
	setLinkcolor(oElem, "#333");
}

function gotourl(url)
{
	self.location.href=url;
}

function setLinkcolor(oElem, strColor)
{
	oAnchor = oElem.firstChild;
	while( (oAnchor != null) && (oAnchor.nodeName != "A") ) oAnchor = oAnchor.nextSibling;
	if(oAnchor != null) oAnchor.style.color = strColor;
}
