function private_getSubmenuWidth (menuId, itemId)
{
	if (menuId == 1 && itemId == 1)
			return 130;
	if (menuId == 20 && itemId == 1)
			return 90;
	/*
	switch (itemId)
	{
		case 1 : return 90;
	}
	*/
	return 0;
}

function private_moveLeft (menuId, itemId)
{
	switch (itemId)
	{
		case 1 : return -5;
		case 4 : return -20;
	}
	return 0;
}

function private_moveTop (menuId, itemId)
{
	return 0;
}

function private_showPopup (menuId, itemId) {}
function private_hidePopup (menuId, itemId) {}

