/* ----------------------------------------------------------------
Suckerfish
winblows ie6 script - suckerfish dropdowns
----------------------------------------------------------------*/

startlist = function() {
	if (document.getElementById) {
		navRoot = document.getElementById("startlist");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.className == "navi") 
			{node.onmouseover=function() {this.className += " over"; this.firstChild.className += " ddownmenu";}
				node.onmouseout=function(){this.className = this.className.replace(" over", "");
					if (this.firstChild.className == "ddown ddownmenu") this.firstChild.className = "ddown";
					if (this.firstChild.className == " ddownmenu" || this.firstChild.className == "ddownmenu") this.firstChild.className = "";}
			}
		}
	}
}

