lis = document.getElementsByTagName("li");

begin = 0;
while(begin < lis.length)
{
lis[begin].onmouseover=function() {this.className='sfhover';};
lis[begin].onmouseout=function() {this.className='';};
begin++;
}