function openNav(className) {
	document.getElementById('thisBody').className = className;
}

function popUp(URL,w,h) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,height="+h+",width="+w+",left = 0,top = 0');");
}

var dropDown = new Array('flyOut1','flyOut2','flyOut3','flyOut4','flyOut5','flyOut6','flyOut7','flyOut8','flyOut9','flyOut10','flyOut11','flyOut12');
var disappearSet = 0;

function showMenu(i)
{

	hideMenu();	
	if(disappearSet == 1)
	{
		clearTimeout(disappear);
	}
	document.getElementById(dropDown[i]).style.display = "block";
}

function hideMenu()
{		
	for (i=0; i<dropDown.length; ++i)
	{
		document.getElementById(dropDown[i]).style.display = 'none';
	}
}

function stay()
{
	clearTimeout(disappear);
}

function leave()
{
	disappear = setTimeout("hideMenu()",1500);
	disappearSet = 1;
}