// This script's purpose is to make the mouse-overs work in IE, since it
// doesn't support the :hover pseudo-element on non-anchors.

// Thanks go to Suckerfish Dropdowns by Patrick Griffiths
// and Dan Webb, which is the article that this is based on.

startList = function() {
	if (document.all&&document.getElementById)
	{
		root = document.getElementById("dropOver");
		len = root.childNodes.length;
		for (i=0; i< len; i++)
		{
			node = root.childNodes[i];
			if (node.nodeName == "LI")
			{
				node.onmouseover=function() {
					this.className+=" over";
	  			}
	  			node.onmouseout=function() {
	  				this.className=this.className.replace(" over", "");
	   			}
			}
		}
	}
}
window.onload=startList;
