// <![CDATA[

function mover(el)
{
  el.style.backgroundColor = "rgb(100,100,200)";
  el.style.filter = "alpha(opacity=30)";
  el.style.MozOpacity = ".3";
}

function mout(el)
{
  el.style.backgroundColor = "";
  el.style.filter = "";
  el.style.MozOpacity = "";
}
// ]]>
