/*
 *	Выпадающее меню
 *	Версия: 2.0
 *
 *	*-<|:o)
*/

// ----------------------------------------------------------------------------

var TopMenu = new TPopMenu('TopMenu');
TopMenu.BorderCorrect	= true;
TopMenu.ClassHover		= '';
TopMenu.ClassNormal		= '';
TopMenu.HideTimeMain	= 220;
TopMenu.HideTimePop		= 500;
TopMenu.ShowPath		= true;
TopMenu.IdMain			= 'gtopmenu';
TopMenu.TablePrefix		= 'gtopmenu-t';
TopMenu.FramePrefix		= 'gtopmenu-f';
TopMenu.ShowFrame			= false;
TopMenu.BottomParentWidth = true;

function Open(url)
{
	location.href = url;
}
function Show1Sel(Source) { TopMenu.Show(Source, 1, 'gm_select', 'gm_select'); }
function Show1(Source, Select) { TopMenu.Show(Source, 1, Select ? 'gm_select' : 'gm_normal', 'gm_hover'); }
function Show2(Source, Childs) { TopMenu.Show(Source, 2, Childs ? '' : 'gm_normal', 'gm_hover'); }
function Show3(Source) { TopMenu.Show(Source, 3, 'gm_normal', 'gm_hover'); }
function ShowChild(Source, IDChild) { TopMenu.ShowChild(Source, IDChild, 'bottom'); }
//function ShowChildRight(Source, IDChild) { TopMenu.ShowChild(Source, IDChild, 'right'); }
function Hide(Source) { TopMenu.Hide(Source); }

