
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 = "#000000";}

function MouseDown(element, colors)
{element.style.backgroundColor = colors;
element.children.tags('A')[0].style.color = "#FFFFFF";}

function MouseUp(path)
{location.href = path;}


  