var showing_menus = false;

var list_menus=
[
	"bvmc_about_us",
	"bvmc_plan",
	"bvmc_veterans",
	"bvmc_library"
];



function show_menu(section)
{
	

	showing_menus = true;
	
	var target;
	
	for (var x=0; x<list_menus.length; x++)
	{
		
		target = document.getElementById(list_menus[x]);
		if (target) target.style.display = "none";
	}
	
	
	target = document.getElementById(section);
	if (target) target.style.display = "block";
}




function timer_hide_menus()
{
	showing_menus = false;
	setTimeout(hide_menus_timeout,1000);
}


function hide_menus_timeout()
{
	if(!showing_menus)
	{
		for (var x=0; x<list_menus.length; x++)
		{

			target = document.getElementById(list_menus[x]);
			if(target) target.style.display = "none";
		}	
	}
}
