﻿/*¨
startList = function() {
	if (document.getElementById) {
		nodes = document.getElementById("topnav").getElementsByTagName("li");

		for (i=0; i<nodes.length; i++) {
			node = nodes[i];

			if (node.className.indexOf("L1") != -1) {
				node.onmouseout=function() {
					this.className = this.className.replace(" inpath", "");
				}
			}
		}
	}
}
window.onload=startList;*/
