﻿folderMenuName = "Trang Kinh tế";
folderMenu = [
	["(Thư mục ngoài)","../"],
	["Thông tin kinh tế","thong_tin.htm"],
	["Kinh tế trí thức","kinhtetrithuc2009a.html"],
	["Doanh nghiệp Hungary ở Việt Nam","doanh_nghiep_hungary.htm"],
	["Doanh nghiệp Việt Nam ở Hungary","doanh_nghiep_vietnam.htm"],
	["Kêu gọi đầu tư","dau_tu.htm"]
];


function leftMenu(itemNo){
	for( i = 0; i < folderMenu.length; i++ )
	{
		document.write("\
              <tr> \
                <td width='5%'>&nbsp;</td>\
                <td width='5%'><img src='"+sitePath+"assets/images/arrow-sm.gif' width='7' height='12'></td>\
			");
//		if(i == itemNo)
		if(folderMenu[i][0][0] != '(' && document.location.href.search(new RegExp( "("+folderMenu[i][1]+")", "i" )) >= 0)
		{
			document.write("\
                <td width='90%' class='small'><b>"+folderMenu[i][0]+"</b></td>\
				</tr>\
			");
		}
		else
		{
			document.write("\
                <td width='90%' class='small'><a href='"+folderMenu[i][1]+"'>"+folderMenu[i][0]+"</b></td>\
				</tr>\
			");
		}
	}
}
