/*
 *	Выпадающее меню
 *	Версия: 2.0
 *
 *	*-<|:o)
*/

// ----------------------------------------------------------------------------

var TopMenu = new TPopMenu('TopMenu');
TopMenu.BorderCorrect	= false;
TopMenu.ClassHover		= '';
TopMenu.ClassNormal		= '';
TopMenu.HideTimeMain	= 300;
TopMenu.HideTimePop		= 1500;
TopMenu.ShowPath		= true;
TopMenu.IdMain			= 'topmenu';
TopMenu.TablePrefix		= 'topmenu-t';
TopMenu.FramePrefix		= 'topmenu-f';
TopMenu.ShowFrame			= false;
TopMenu.BottomParentWidth = false;

function Open(url)
{
	location.href = url;
}
function Show1Sel(Source){TopMenu.Show(Source, 1, 'select', 'hover');}
function Show1(Source, Select){TopMenu.Show(Source, 1, 'normal', 'hover');}
function Show2(Source, Childs){TopMenu.Show(Source, 2);}
//function Show3(Source) { TopMenu.Show(Source, 3, 'm_normal', 'm_hover'); }
function ShowChild(Source, IDChild){TopMenu.ShowChild(Source, IDChild, 'bottom');}
function Hide(Source){TopMenu.Hide(Source);}

