// JavaScript Document

		/* TOP NAVIGATION HACK */
		startList = function() {
			if (document.all&&document.getElementById) {
				navRoot = document.getElementById("drop_down_chroniques");
				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", "");
							}
						}
				}
				/* STARTS GETTING EXPERIMENTAL! */

				/*submenus = new Array("topnav_showroom_rolldown_menu","topnav_products_rolldown_menu","topnav_floorcare_rolldown_menu","topnav_about_rolldown_menu");
				for (k=0; k<submenus.length; k++) {
					submenuRoot = document.getElementById(submenus[k]);
					for (j=0; j<submenuRoot.childNodes.length; j++) {
						subnode = submenuRoot.childNodes[j];
						if (subnode.nodeName=="LI") {
							subnode.onmouseover=function() {
								this.className+=" over";
							}
							subnode.onmouseout=function() {
								this.className=this.className.replace(" over", "");
							}
						}
					}
				}*/

				/* END EXPERIMENT */
							
			}
		}
		window.onload=startList;
