// JavaScript Document
function newsHover(id)
{
  document.getElementById(id).style.backgroundImage = "url(img/fade_newsitem_hover.gif)";
  /* document.getElementById(id).style.borderColor = "#CC0000"; */
}

function newsUnhover(id)
{
  document.getElementById(id).style.backgroundImage = "url(img/fade_newsitem.gif)";
  /* document.getElementById(id).style.borderColor = "#999999"; */
}
