var defaultWidth;
var defaultHeight;
var overWidth;
var overHeight;
function init_flashnav(menuID, defW, defH, overW, overH){
	var elmt = document.getElementById(menuID);
	defaultWidth = defW;
	defaultHeight = defH;
	overWidth = overW;
	overHeight = overH;
	elmt.style.position = "absolute";
	elmt.style.overflow = "hidden";
	elmt.style.zIndex = "1000";
	elmt.onmouseover = function(){
		show_flashnav(this);
	}
	elmt.onmouseout = function(){
		hide_flashnav(this);
	}
	elmt.onload = function(){
		hide_flashnav(this);
	}
}
function show_flashnav(elmt){	
	elmt.style.width = overWidth+"px";
	elmt.style.height = overHeight+"px";
}

function hide_flashnav(elmt){
	elmt.style.width = defaultWidth+"px";
	elmt.style.height = defaultHeight+"px";
	elmt.asKillMenu();
}
