
searchHover = function() {
	if(document.getElementById("searchList")) {

		var searchItems = document.getElementById("searchList").getElementsByTagName("li");

		for (var i=0; i<searchItems.length; i++) {
			searchItems[i].onmouseover=function() {
				this.className+=" sfhover";
			}
			searchItems[i].onmouseout=function() {
				this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
			}
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", searchHover);
