$(function(){
$("div.hitlist").mouseover(function(){
this.style.backgroundColor = "#EBEBEB";
});
$("div.hitlist").mouseout(function(){
this.style.backgroundColor = "#F7F7F7";
});
});