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

