function class_assign_drop_mouseover() {
    //alert('mouseover');
	this.className="hover";
}
function class_assign_drop_mouseout() {
	this.className="";
}
displayNodesDrop =  function() {
	//alert('is this even happening?');
	navRoot2 = document.getElementById('MightyMenu').getElementsByTagName("LI"); //mm I
	//alert(navRoot2.length);
	for(i=0; i<navRoot2.length; i++) { 
		navRoot2[i].onmouseover = class_assign_drop_mouseover;
		navRoot2[i].onmouseout = class_assign_drop_mouseout;
	}
}

openMenuArray = Array();
if (document.all && document.getElementById) window.onload = displayNodesDrop;
//addLoadEvent(align_d());

function startList(){
	navRoot2 = document.getElementById('menu').getElementsByTagName("LI"); //mm I
	for(i=0; i<navRoot2.length; i++) { 
		navRoot2[i].onmouseover=function() {
			this.className+=" over";
		}
		navRoot2[i].onmouseout=function() {
			this.className="";
		}
	}
}