// JavaScript Document

function LmOver(elem, clr)
{elem.style.backgroundColor = clr;
var chil = elem.children.tags('a')[0];
chil.style.color = "#FFFFFF";
elem.style.cursor = 'hand'}

function LmOut(elem, clr)
{elem.style.backgroundColor = clr;
var chil = elem.children.tags('a')[0];
chil.style.color = "#000000";}

function LmDown(elem, clr)
{elem.style.backgroundColor = clr;
var chil = elem.children.tags('a')[0];
chil.style.color = "#FFFFFF";}

function LmUp(path)
{location.href = path;}