var AEV_DropArry = new Array();
function AEV_setDrop(Nav,Btn,N){
	var Count = AEV_DropArry.length;
	AEV_DropArry[Count] = new Array();
	AEV_DropArry[Count][0] = Nav;
	AEV_DropArry[Count][1] = Btn;
	Nav.onmouseover = function() { AEV_runDrop(); t = 2; return true; }
	Nav.onmouseout = function() {	t = 1; delayHide(); return true; }
	Btn.onmouseover = function() { AEV_runDrop(); popMenu(N); return true; }
	Btn.onmouseout = function() { t=1; delayHide(); return true; }
}
function AEV_runDrop(){
	if (parseInt(navigator.appVersion)>3) {
		if (navigator.appName=="Netscape") 
			offset_x = document.getElementById('Navigation').offsetLeft;
		if (navigator.appName.indexOf("Microsoft")!=-1)
			offset_x = document.getElementById('Navigation').offsetLeft;
	} for(var n = 0; n < AEV_DropArry.length; n++) AEV_DropArry[n][0].style.left = AEV_DropArry[n][1].offsetLeft+offset_x+"px"; }
