//action when mouse goes over a menu item
function menuOver(item)
{
  var element = document.getElementById(item);
  element.style.backgroundColor='#99abd1';
  element.style.color='white';
}

//action when mouse goes out a menu item
function menuOut(item)
{
  var element = document.getElementById(item);
  element.style.backgroundColor='white';
  element.style.color='#99abd1';
}

//action when mouse goes over a link item
function linkOver(item)
{
  var element = document.getElementById(item);
  element.firstChild.style.borderColor='#99abd1';
  element.style.color='#99abd1';
}

//action when mouse goes out a link item
function linkOut(item)
{
  var element = document.getElementById(item);
  element.firstChild.style.borderColor='#c3b8b4';
  element.style.color='#c3b8b4';
}

