/* --------------------------------- */
/*          STOREFRONT v2.0          */
/* --------------------------------- */
/*           SFXv2.0 MENUS           */
/* --------------------------------- */
/*  Created:  2003-06-01             */
/*  Issued:   2003-06-01             */
/*  Modified: 2006-12-29             */
/*  Client: Sophiaknows              */
/*  Copyright (c) 2003-2006          */
/*  A.R. Tony Pisarra, SophiaKnows   */
/* --------------------------------- */
/* --------------------------------- */

// A. MENUS: START LIST

function startList() {
	if (document.all&&document.getElementsByTagName) {
		for(a=0; (menuRoot = document.getElementsByTagName("dir")[a]); a++) {
			if(menuRoot.className =='drop-menu') {
				for (i=0; i<menuRoot.childNodes.length; i++) {
					node = menuRoot.childNodes[i];
					if (node.nodeName=="LI") {
						node.onmouseover=function() { this.className+="over"; }
						node.onmouseout=function() { this.className=this.className.replace("over", ""); }
						}
					}
				}
			}
		}
	}


