<!--

function imgchange(imgname,imgsource) {
    document.images[imgname].src=imgsource;
}


function ChangeOrderNo(txt) {
    if(document.getElementById){
        document.getElementById('ordernr').innerHTML = txt;
	}
}


//-->
<!--//--><![CDATA[//><!--

startList = function() {
	if (document.all&&document.getElementById) {

		navRoot = document.getElementById("topnavi_main");

		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {

				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}

                if(node.childNodes.length) {
                    for(j=0; j < node.childNodes.length; j++) {
                        subNode = node.childNodes[j];
                        if(subNode.nodeName == 'UL') {
                            if(subNode.childNodes.length) {
                                for(k = 0; k < subNode.childNodes.length; k++) {
                                    if(subNode.childNodes[k].nodeName == 'LI') {
                                        subNode.childNodes[k].onmouseover=function() {
                                            this.className += " over";
                                        }
                                        subNode.childNodes[k].onmouseout=function() {
                                            this.className = this.className.replace(" over", "");
                                        }

                                        if(subNode.childNodes[k].childNodes.length) {
                                            for(l=0; l < subNode.childNodes[k].childNodes.length; l++) {
                                                subsubNode = subNode.childNodes[k].childNodes[l];
                                                if(subsubNode.nodeName == 'UL') {
                                                    if(subsubNode.childNodes.length) {
                                                        for(m = 0; m < subsubNode.childNodes.length; m++) {
                                                            if(subsubNode.childNodes[m].nodeName == 'LI') {
                                                                subsubNode.childNodes[m].onmouseover=function() {
                                                                    this.className += " over";
                                                                }
                                                                subsubNode.childNodes[m].onmouseout=function() {
                                                                    this.className = this.className.replace(" over", "");
                                                                }
                                                            }
                                                        }
                                                    }
                                                }
                                            }
                                        }

                                    }
                                }
                            }
                        }
                    }
                }

			}
		}
	}
}
window.onload=startList;

//--><!]]>