function leftMenu(type)
{

	document.write('<table cellpadding="0" cellspacing="0" border="0">');
	document.write('<tr>');
	document.write('<td><img src="http://morningplus.chosun.com/s_svc_img/service/subscrip_menu00.jpg"  border="0"></td>');
	document.write('</tr>');
	

	//¿ÞÂÊ ¸Þ´º ¹øÈ£ ¹× ¸µÅ©Á¤º¸ ¼³Á¤
	var imgName = new Array(1,2,3,4,5,6,7,8);
	var imgLink = new Array('pr_supp_1305_l.jsp',
                                                   '/service/supp/pr_supp_sis.jsp',
                                                   'https://morningplus.chosun.com/servlet/service/supp/1115',
                                                   '/servlet/service/common/1105',
                                                   '/service/supp/pr_supp_2005_l.jsp',
                                                   'nocharge_guide.jsp',
                                                   'mobile_join.jsp',
                                                   '/service/supp/pr_supp_1320_l.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 = "29";	
		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="http://morningplus.chosun.com/s_svc_img/service/subscrip_menu'+tmp+imgName[i]+'_on.gif" width="175" 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="http://morningplus.chosun.com/s_svc_img/service/subscrip_menu'+tmp+imgName[i]+'_off.gif" width="175" 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>');
	
}