﻿function createjsDOMenu()
{
	cursorMenu1 = new jsDOMenu(150);
	with (cursorMenu1)
	{
		addMenuItem(new menuItem('load_up.gif|Trở về trang trước', '', 'code:history.go(-1)'));
		addMenuItem(new menuItem('-'));
		addMenuItem(new menuItem('start.gif|Sơ đồ trang mạng', 'item1', '/page/sitemap.htm'));
		addMenuItem(new menuItem('com_1.gif|Bài viết mới', '', '/m/newposts.htm'));
		addMenuItem(new menuItem('support.gif|Hướng dẫn sử dụng', '', 'code:popwin("'+link_faq+'", "faq", 500, 400);'));
		addMenuItem(new menuItem('search.gif|Tìm kiếm', '', '/p/search.htm'));
		addMenuItem(new menuItem('star.gif|Ðánh dấu trang này', '', link_fav));
		addMenuItem(new menuItem('sect/dic.gif|Tra từ điển nhanh', '', 'code:quickdic()'));
		addMenuItem(new menuItem('-'));
		addMenuItem(new menuItem('personal.gif|Bảng điều khiển', '', '/p/user/a-cp.htm'));
		addMenuItem(new menuItem('power_off.gif|Ðăng xuất (log out)', '', '/p/user/a-logout.htm'));
	}

	cursorMenu1_1 = new jsDOMenu(130);
	with (cursorMenu1_1)
	{
		addMenuItem(new menuItem('home.gif|Trang chủ', '', '/'));
		addMenuItem(new menuItem('forum.gif|Diễn đàn', '', '/p/forum.htm'));
		addMenuItem(new menuItem('sect/kb.gif|Kiến thức', '', '/p/kb.htm'));
		addMenuItem(new menuItem('sect/music.gif|Âm nhạc', '', '/p/music.htm'));
		addMenuItem(new menuItem('sect/dic.gif|Từ điển', '', '/p/dic.htm'));
		addMenuItem(new menuItem('star.gif|Trang yêu thích', '', '/p/user/a-favorite.htm'));
	}
	cursorMenu1.items.item1.setSubMenu(cursorMenu1_1);

	setPopUpMenu(cursorMenu1);
	activatePopUpMenuBy(1, 2);
}