/* ZeosFilms JavaScript: adiscripts.js */// Copyright Messagingvar	currentDate = new Date();var	currentYear = currentDate.getFullYear();var	copyrightString = "Copyright &#169; " + currentYear + " ZeosFilms. All rights reserved.";startList = function() {					// assigns event handlers to li menu items in menuList block								// assigns the "over" class to display the popup								// clears the "over" cass (resets) to clear the popup  if (document.all&&document.getElementById) { 			// check for DOM Support level 		navRoot = document.getElementById("nav"); 	// find the "nav" UL item and set a pointer to them		for (i=0; i<navRoot.childNodes.length; i++) {	// within navigation items find child node			node = navRoot.childNodes[i];		// assign to the "node" array			if (node.nodeName=="LI") {		// if the child node is an LI tag				node.onmouseover=function() {	// assign a mouseover event handler...					this.className+=" over";// to indicate an "over" state for the menu item				} // end onmouseover				node.onmouseout=function() {	// assign a mouseout event handler...					this.className=this.className.replace(" over", ""); // to switch class to "over" state				} // end onmouseout			} // end if LI		} // end for children of navRoot	} // end if getElementById		} // end startListwindow.onload=startList;
