﻿/*JH 3/29/08 for side menus */
sfsideHover = function() {
	var sfEls = document.getElementById("subcatlist").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfsidehover";
			hideSelects();
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfsidehover\\b"), "");
			showSelects();
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfsideHover);


