/*
 *	Выпадающее меню
 *	Версия: 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			= 'topmenu';
TopMenu.TablePrefix		= 'topmenu-t';
TopMenu.FramePrefix		= 'topmenu-f';
TopMenu.ShowFrame			= false;
TopMenu.BottomParentWidth = true;

function Open(url)
{
	location.href = url;
}
function Show1Sel(Source) { TopMenu.Show(Source, 1, 'm_select', 'm_select'); }
function Show1(Source, Select) { TopMenu.Show(Source, 1, Select ? 'm_select' : 'm_normal', 'm_hover'); }
function Show2(Source, Childs) { TopMenu.Show(Source, 2, Childs ? '' : 'm_normal', 'm_hover'); }
function Show3(Source) { TopMenu.Show(Source, 3, 'm_normal', 'm_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); }

