function fws_mouse_enter(id)
{
    var e = xGetElementById('imgbox_'+id);
    e.style.backgroundColor="#91BDF1";

    var e = xGetElementById('descbox_'+id);
    e.style.backgroundColor="#91BDF1";

  document.body.style.cursor = 'pointer';
}

function fws_mouse_leave(id)
{
    var e = xGetElementById('imgbox_'+id);
    e.style.backgroundColor="#C6DEFA";

    var e = xGetElementById('descbox_'+id);
    e.style.backgroundColor="#C6DEFA";
  document.body.style.cursor = 'default';
}