// JavaScript Document

<!--
		startmenuIconesSups = function() {
		if (document.getElementById) {
			menuIconesSupsRoot = document.getElementById("menuIconesSups");
			if (menuIconesSupsRoot) {
				for (var i=0; i<menuIconesSupsRoot.childNodes.length; i++) {
					node = menuIconesSupsRoot.childNodes[i];
					if (node.tagName && node.tagName.toLowerCase()=="li") {
						node.onmouseover=function() {
							this.className+=" over";
							
						}
						node.onmouseout=function() {
							this.className=this.className.replace("over", "");
						}
					}
				}
			}
		}
		//myFlash_DoFSCommand();
	}
	window.onload=startmenuIconesSups;
-->
