<!-- right column Menu FONT COLORS
function MouseOver(element, colors)
{element.style.backgroundColor = colors;
element.children.tags('A')[0].style.color = "#FFFFFF";
element.style.cursor = 'hand'}

function MouseOut(element, colors)
{element.style.backgroundColor = colors;
element.children.tags('A')[0].style.color = "#808080";}

function MouseDown(element, colors)
{element.style.backgroundColor = colors;
element.children.tags('A')[0].style.color = "#FF0000";}

function MouseUp(path)
{location.href = path;}
-->