/*
 * pop_menu.js - popup/dropdown menu
 * - only works with multiple menu items
 * - only works with absolute positioning for vertical menus
 * Author: Mark Reodica (http://www.markreodica.com)
 */
iMenus = 8; // number of menu items

function mbr_pop_menu (id)
{
	mbr_hide_all();
	document.getElementById(id).style.visibility = 'visible';
	setTimeout('mbr_hide_menu("' + id + '")', 15000);
}

function mbr_hide_menu (id)
{
	document.getElementById(id).style.visibility = 'hidden';
}

function mbr_hide_all ()
{
	for (i = 1; i <= iMenus; i++)
		document.getElementById('menu_'+i).style.visibility = 'hidden';
}

/* -------------------------------------------------------------------- */