function hover (obj)
{

 var x = document.getElementById(obj);
 x.style.backgroundImage = "url('../img-sys/"+obj+"_h.jpg')";
}

function unhover (obj)
{

 var x = document.getElementById(obj);
 x.style.backgroundImage = "url('../img-sys/"+obj+".jpg')";
}

