

function NavOver(elem, clr)
{
elem.style.backgroundColor = clr;
elem.children.tags('A')[0].style.color = "#000000";
}

function NavOut(elem, clr)
{

elem.style.backgroundColor = clr;
elem.children.tags('A')[0].style.color = "#FFFFFF";
}

