function hov (id,state)
{
c = document.getElementById(id);

cc = c.style.backgroundColor;
v = document.getElementById('vl').value;

if (state=="in") c.style.backgroundColor="#669999";
if (state=="out" && v!=id) c.style.backgroundColor="#336666";

}

function setHTML(arimg,arlnk,arttl,arann,val)
{
v = document.getElementById('vl').value;
if (v!=val) document.getElementById(v).style.backgroundColor="#336666";

tz = document.getElementById('img');
ta = document.getElementById('titlehref');
ti = document.getElementById('annothref');

tz.innerHTML='<img src="/resize/305/229/'+arimg+'" alt="" width="305" height="229" />';
ta.href=arlnk;
ta.innerHTML=arttl;
ti.href=arlnk;
ti.innerHTML=arann;

document.getElementById('vl').value=val;
}
