var menuArr = new Array(200);		// ¸Þ´º°¹¼ö¸¸Å­ Àû´Â´Ù.

// ¸¶Áö¸· ¹è¿­ ¹øÈ£ : 150

menuArr[0] = new Array('1', 'È¸»ç¼Ò°³', '/company/company01.asp');
menuArr[1] = new Array('11', 'CEO', '/company/company01.asp');

menuArr[2] = new Array('12', '¿¬Çõ¼Ò°³', '/company/company02_01.asp');
menuArr[3] = new Array('121', '¼º¿ø°Ç¼³', '/company/company02_01.asp');
menuArr[4] = new Array('122', '¼º¿ø»ê¾÷°³¹ß', '/company/company02_02.asp');

menuArr[5] = new Array('13', 'Á¶Á÷¼Ò°³', '/company/company03_01.asp');
menuArr[6] = new Array('131', 'Á¶Á÷µµ', '/company/company03_01.asp');
menuArr[7] = new Array('132', '¿¬¶ôÃ³', '/company/company03_02.asp');

menuArr[8] = new Array('14', 'À§Ä¡/¿¬¶ôÃ³', '/company/company04.asp');
menuArr[9] = new Array('15', 'ÀÎÀçÃ¤¿ë', '/company/company05.asp');
menuArr[10] = new Array('16', 'CI°¡ÀÌµå', '/company/company06.asp');

	
	
function dispMenu(MenuCode) {
	
	var c_no = 0;

	for (i=0; i<MenuCode.length; i++) {

		SubCode = MenuCode.substring(0, i+1);
		for (j=0; j<menuArr.length; j++) {
			if (menuArr[j][0]==SubCode) {
				
				if (c_no == 0){
					document.write("<A HREF='/index.asp' target='_top'>Home</A>");
					c_no = c_no + 1;
				}
				
				if ((MenuCode!=SubCode) && (menuArr[j][2].length > 0)) {				
					document.write(" > ");
					document.write("<a href='"+menuArr[j][2]+"'>"+menuArr[j][1]+"</a>");
				} else {				
					document.write(" > ");
					document.write(menuArr[j][1]);
				}
				break;
			}
		}
	}
}
//ÇÃ·¡½¬ Æ÷Ä¿½º
menuMain = 1;
menuSub = 0;
menuTrd = 0;
