function fix_search_hover()
{
	var s=document.getElementsByTagName('td');
	for(i=0;i<s.length;i++)
	{
		if(s[i].className=='srb-col1')
		{
			s[i].parentNode.onmouseover=function()
			{
				with(this.style)
				{
					background='#dbdae2';
					cursor='pointer';
				}
			};
			s[i].parentNode.onmouseout=function()
			{
				with(this.style)
				{
					background='';
					cursor='';
				}
			}
		}
	}
	setTimeout("fix_search_hover()",1000);
}

if(navigator.appVersion.search("MSIE 6.0")>0)
{
	fix_search_hover();
}
