function over(id)
{
if(id.currentStyle)
  {id.style.backgroundColor=document.getElementById('itemh').currentStyle.backgroundColor;
  }else
  {var o=window.getComputedStyle(document.getElementById('itemh'),"");
   id.style.backgroundColor=o.getPropertyValue("background-color")
  }
}
function out(id)
{
id.style.backgroundColor=document.getElementById('itemn').style.backgroundColor;
}
function clickIt(entry)
{
location.href=entry;
}

