// JavaScript Document for Winnipeg Jazz Orchestra


// function for the rollovers <-- make it work in IE6
startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("navigation");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.id=="subNav") {
				node.onmouseover=function() {
					document.getElementById("subNavList").style.display="block";
				}
				node.onmouseout=function() {
					document.getElementById("subNavList").style.display="none";
				}
			}
		}
	}
}
window.onload=startList;
