// Run Information Drop Menu Control
function down_1 ()
	{
		document.getElementById('menudown1').style.visibility='visible';
	}
function up_1 ()
	{
		document.getElementById('menudown1').style.visibility='hidden';
	}
function close_1 ()
	{
		one = setTimeout(up_1,500);
	}
function close_1b ()
	{
		oneb = setTimeout(up_1,800);
	}
function open_1 ()
	{
		down_1();
		up_2();
		up_3();
		up_4();
		up_5();
		clearTimeout(one);
		clearTimeout(oneb);
	}

	
// Get Involved Drop Menu Control
function down_2 ()
	{
		document.getElementById('menudown2').style.visibility='visible';
	}
function up_2 ()
	{
		document.getElementById('menudown2').style.visibility='hidden';
	}
function close_2 ()
	{
		two = setTimeout(up_2,500);
	}
function close_2b ()
	{
		twob = setTimeout(up_2,800);
	}
function open_2 ()
	{
		down_2();
		up_1();
		up_3();
		up_4();
		up_5();
		clearTimeout(two);
		clearTimeout(twob);
	}

// Sponsors Drop Menu Control
function down_3 ()
	{
		document.getElementById('menudown3').style.visibility='visible';
	}
function up_3 ()
	{
		document.getElementById('menudown3').style.visibility='hidden';
	}
function close_3 ()
	{
		three = setTimeout(up_3,500);
	}
function close_3b ()
	{
		threeb = setTimeout(up_3,800);
	}
function open_3 ()
	{
		down_3();
		up_1();
		up_2();
		up_4();
		up_5();
		clearTimeout(three);
		clearTimeout(threeb);
	}


// Epilepsy Resources Drop Menu Control
function down_4 ()
	{
		document.getElementById('menudown4').style.visibility='visible';
	}
function up_4 ()
	{
		document.getElementById('menudown4').style.visibility='hidden';
	}
function close_4 ()
	{
		four = setTimeout(up_4,500);
	}
function close_4b ()
	{
		fourb = setTimeout(up_4,800);
	}
function open_4 ()
	{
		down_4();
		up_1();
		up_2();
		up_3();
		up_5();
		clearTimeout(four);
		clearTimeout(fourb);
	}

	
// About Us Drop Menu Control
function down_5 ()
	{
		document.getElementById('menudown5').style.visibility='visible';
	}
function up_5 ()
	{
		document.getElementById('menudown5').style.visibility='hidden';
	}
function close_5 ()
	{
		five = setTimeout(up_5,500);
	}
function close_5b ()
	{
		fiveb = setTimeout(up_5,800);
	}
function open_5 ()
	{
		down_5();
		up_1();
		up_2();
		up_3();
		up_4();
		clearTimeout(five);
		clearTimeout(fiveb);
	}


function close_all ()
	{
		up_1();
		up_2();
		up_3();
		up_4();
		up_5();
	}
	
