var Menu = {

SetMenuEffects: function() {
	if (document.getElementById) {
		MMRoot = document.getElementById("Menu");
		if (MMRoot){
			TmpObj = null;
			for (i=0; i<MMRoot.childNodes.length; i++) {
				
				node = MMRoot.childNodes[i];
				
				if (node.nodeName=="LI" && node.className=="MMenuItem") {

					node.onmouseover=function() {
						this.className+=" MMHigh";
						//if (!document.all || navigator.userAgent.indexOf("MSIE 7") != '-1') {
						if (!document.all) {
							$(this).morph('margin-top: 30px;', {duration:0.4});
							if (TmpObj && TmpObj != this) {
								$(TmpObj).morph('margin-top: 0px;');
							} else if (TmpObj == this) {
								new PeriodicalExecuter(function(pe) {
									$(TmpObj).morph('margin-top: 0px;');
								}, 7);
							}
							
						}
						TmpObj = this
					}
					node.onmouseout=function() {
						this.className=this.className.replace(" MMHigh", "");
					}
					
				}
			}
		}
	}
},

SubMenuEffects: function(SM_ID) {
		new Effect.toggle(SM_ID, 'blind');
},

Nada: function() {
	return;
}

}


