// JavaScript Document
<!--

function LmUp(path)
{location.href = path;}

function LmOver(elem, clr){
  elem.style.backgroundColor = clr;
  elem.children.tags('A')[0].style.color = "#C44619";
  elem.style.cursor = 'hand'
}
      
function LmOut(elem, clr){
  elem.style.backgroundColor = clr;
  elem.children.tags('A')[0].style.color = "#0E4D8B";
}
      
function LmDown(elem, clr){
  elem.style.backgroundColor = clr;
  elem.children.tags('A')[0].style.color = "#FFFFFF";
}

//-->
