/*** JS version 1.5* DOM version 1.0** @author Remo Häusler <remo.haeusler@promacx.ch>* @version 1.1* @module Menu*//*** @var object*/Menu = {	/**	* @param HTMLobject	*/	init: function (node)	{		var childs = node.childNodes;		for (var n in childs){			var child = childs[n];			if (child.nodeName == "LI"){				child.onmouseover = function ()				{					this.className = "hover";				}				child.onmouseout = function ()				{					this.className = "";				}			}			if (child.nodeType === 1){				this.init(child);			}		}	}}