function mouseover_bg(td_obj)
{
  document.getElementById(td_obj).style.backgroundColor = "#eeeeee";
}

function mouseout_bg(td_obj,menu_id)
{
  document.getElementById(td_obj).style.backgroundColor = "#cccccc";
}