/*
	$Id: menu.js 2621 2007-09-12 05:52:12Z brad $

	This file is part of ayudaCMS
	Copyright 2007: ayuda IT
	http://www.ayuda.com.au

	For licencing details, please see LICENCE.txt in the ayudaCMS directory.
*/

function initialisePopupMenu(menuID) {

	if (document.all && document.getElementById) {

		var menu = document.getElementById(menuID);

		if(menu != null) {

			for (i = 0; i < menu.childNodes.length; i++) {

				node = menu.childNodes[i];

				if (node.nodeName == "LI") {

					node.onmouseover = function() {
						this.className += " over";
					}

					node.onmouseout = function() {
						this.className = this.className.replace(" over", "");
					}
				}
			}
		}
	}
}


