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 drop_swapImgRestore(id){
	var dropTimer = setTimeout("dropRestoreCheck("+id+")",50);
	
}

var currLi = "";
function dropRestoreCheck(id){
	
	if(document.getElementById("ul_"+id).clientHeight == 0){
		if(currLi == id) MM_swapImgRestore();
		var dropTimer = "";
	}else{
		setTimeout("dropRestoreCheck("+id+")",50);
	}	
}