function LmOverMenu(elem)
{
elem.style.backgroundColor = '#649bc6';
elem.style.cursor = 'hand'
elem.style.borderColor = '#ffffff';
//elem.children.tags('A')[0].style.textdecoration = 'underline';
}
function LmOver(elem)
{
elem.style.backgroundColor = '#666666';
elem.style.cursor = 'hand'
elem.children.tags('A')[0].style.color = '#e6e5e6';
}
function LmOut(elem)
{
elem.style.backgroundColor = '#e6e5e6';
elem.children.tags('A')[0].style.color = '#0060cb';
}
function LmOutMenu(elem)
{
elem.style.background = 'images/header-wave.gif'; 
elem.style.borderColor = '#ffffff';
}
function LmUp(path)
{location.href = path;}

function trim(string)
{
  var ch = string.substring(0,1);
  while(ch==" ")
  {
    string = string.substring(1,string.length);
    ch = string.substring(0,1);
  }
  
  ch = string.substring(string.length-1,string.length);
  while(ch==" ")
  {
    string = string.substring(0,string.length-1);
    ch = string.substring(string.length-1,string.length);
  }
  return string;
}
