/*

   HERCULES CMS <www.hercules2.org>

    Copyright (C) 2006  PAUL PIERRE HODEL <paul.hodel@hercules2.org>


    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Library General Public
    License as published by the Free Software Foundation; either
    version 2 of the License, or (at your option) any later version.

    This library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Library General Public License for more details.

    You should have received a copy of the GNU Library General Public
    License along with this library; if not, write to the Free
    Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

*/

timeout = new Array;

function menuIn (i)
{
	window.clearTimeout(timeout[i]);

	/*for (var j = 0; j < timeout.length; j++)
	{
		if ((document.getElementById(j)) && (i != j))
		{
			if (document.getElementById(j).style.display == 'block') document.getElementById(j).style.display = 'none';
		}
	}*/

	menuShow(i);
}

function menuShow (i)
{
	if (document.getElementById(i)) document.getElementById(i).style.display = 'block';
}

function menuOut (i)
{
	timeout[i] = window.setTimeout('menuHide('+i+')', 50);
}

function menuHide (i)
{
	if (document.getElementById(i)) document.getElementById(i).style.display = 'none';
}
