/*
This script will add a class value of 'over' to LIs (or any other node specified) to mimic the :hover pseudo-class that are available in other browsers).

You determine which ID-ed element has your child nodes and which element node to add the class to.
*/

function ieHovers() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("member_nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}