<!--//--><![CDATA[//><!--
function startList() {
	if (document.all&&document.getElementById) {
		alphaRoot = document.getElementById("alpha");
		for (i=0; i<alphaRoot.childNodes.length; i++) {
			node = alphaRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
		betaRoot = document.getElementById("beta");
		for (i=0; i<betaRoot.childNodes.length; i++) {
			node = betaRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
		gammaRoot = document.getElementById("gamma");
		for (i=0; i<gammaRoot.childNodes.length; i++) {
			node = gammaRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
		deltaRoot = document.getElementById("delta");
		for (i=0; i<deltaRoot.childNodes.length; i++) {
			node = deltaRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
//--><!]]>
