/* External Drop-Down Menu script for IE 6.0 */

function startList() {
	if (document.all && document.getElementById) {
		lNavRoot = document.getElementById("lNav");
		rNavRoot = document.getElementById("rNav");
		lNavItems = lNavRoot.getElementsByTagName("LI");
		rNavItems = rNavRoot.getElementsByTagName("LI");
		for (i=0; i<lNavItems.length; i++) {
			if (lNavItems[i].lastChild.tagName == "UL"){
				lNavItems[i].onmouseover = function() {
					this.className += " over";
				}
				lNavItems[i].onmouseout = function() {
					this.className = this.className.replace(" over","");
				}
			}
		}
		for (i=0; i<rNavItems.length; i++) {
			if (rNavItems[i].lastChild.tagName == "UL"){
				rNavItems[i].onmouseover = function() {
					this.className += " over";
				}
				rNavItems[i].onmouseout = function() {
					this.className = this.className.replace(" over","");
				}
			}
		}
	}
}

window.onload = startList;