function leftMenu(type)
{

	document.write('<table cellpadding="0" cellspacing="0" border="0">');
	document.write('<tr>');
	document.write('<td height="10"></td>');
	document.write('</tr>');
	

	//¿ÞÂÊ ¸Þ´º ¹øÈ£ ¹× ¸µÅ©Á¤º¸ ¼³Á¤
	var imgName = new Array(1,2,3,4,5,6);
	var imgLink = new Array('/kw_about/message.jsp',
							'/kw_about/mission.jsp',
							'/kw_about/vision.jsp',
							'/kw_about/ci.jsp',
							'/kw_about/organization.jsp',
							'/kw_about/directions.jsp');


	//»óÀ§ ¸Þ´º È®ÀÎÇÏ¿© »óÀ§¸Þ´ºµµ on »óÅÂ·Î
	if(type.length == 2 && type!="10")  uptype = type.substring(0,1);
	else	uptype="";	
	
	for(i=0; i<imgName.length; i++)
	{
		//height °ª ¹× ÆÄÀÏ¸í¿¡ 0 Ã¤¿ì±â
		height = "30";	
		tmp = "";
		if(String(imgName[i]).length == 2 && imgName[i]!=10)	height = "23";
		else	if (imgName[i]!=10 )						tmp = "0";
	
		document.write('<tr>');
	
		if(type == imgName[i] || uptype == imgName[i])
			document.write('<td><a href="'+imgLink[i]+'" OnFocus="this.blur()"><img src="/images/01_about/menu'+tmp+imgName[i]+'_on.gif" width="200" height="'+height+'" alt="" border="0" name="r'+imgName[i]+'"></a></td>');	
		else
			document.write('<td><a href="'+imgLink[i]+'" onMouseOver=imgOn('+imgName[i]+') onMouseOut=imgOff('+imgName[i]+') OnFocus="this.blur()"><img src="/images/01_about/menu'+tmp+imgName[i]+'_off.gif" width="200" height="'+height+'" alt="" border="0" name="r'+imgName[i]+'"></a></td>');
	
		document.write('</tr>');			
	}

	document.write('<tr>');
	document.write('<td></td>');
	document.write('</tr>');
	document.write('</table>');
	
}
