// Title: mods for tigra menu
// Version: 1.0 (commented source)
// Date: 12-04-2006 (mm-dd-yyyy)
// Tech. Support: http://alexey.od.ua


	window.onresize = function()
	{
		MENU_POS_DELTA = (((document.body.scrollWidth/2 - 318) > 119)? (document.body.scrollWidth/2 - 318) : 150) - MENU_POS_LEFT;
		
		o_root = A_MENUS[0];
		for (n_id = 0; n_id < o_root.a_index.length; n_id++) {
			var o_curritem = o_root.a_index[n_id];
			
			o_curritem.n_x = o_curritem.n_x + MENU_POS_DELTA;
			o_curritem.e_oelement.style.left = o_curritem.n_x + 'px';
		}

		MENU_POS_LEFT = MENU_POS_LEFT + MENU_POS_DELTA;
	}

	function initMenuLoc()
	{
			MENU_POS_LEFT = ((document.body.scrollWidth/2 - 318) > 119)? (document.body.scrollWidth/2 - 318) : 150;
			/*
			if (Page == 'device-selection-page')
			{
				initListGroup('chainedmenu', document.devicelist.manufacturers, document.devicelist.devices, 'savestate');
			}*/
			if (Page == 'support-page' || Page == 'faq-page') //
			{
				initListGroup('chainedmenu', document.versionlist.products, document.versionlist.versions, 'savestate');
			}
	}

