<!--

Menu = new Array;
Menu_url = new Array;
SubMenu = new Array;

width_space = 10;
Menu_height = 28;
SubMenu_height = 24;
M_Bgcolor = '#DBD9DB';				// ¸ÞÀÎ ¸Þ´º ¹è°æ»ö
M_mouse_Bgcolor = '#DBD9DB';		// ¸ÞÀÎ ¸Þ´º ·ê ¿À¹ö ¹è°æ»ö
Ms_Bgcolor = '#FFFFFF';				// ¼­ºê ¸Þ´º ¹è°æ»ö


// ÁÖ¸Þ´º
Menu[0] = 'About Uljin';
Menu[1] = 'Culture & Tourism ';
Menu[2] = 'Uljin`s Future';
Menu[3] = 'Sightseeing Guide';

// ÁÖ¸Þ´º ¸µÅ©
Menu_url[0] = "/menu1/menu1_1.html";
Menu_url[1] = "/menu2/menu1_1.html";
Menu_url[2] = "/menu3/menu1_1.html";
Menu_url[3] = "/menu4/menu1_1.html";

// ¼­ºê¸Þ´º
SubMenu[0] = ''
SubMenu[1] = ''
SubMenu[2] = ''
SubMenu[3] = ''

SubMenu[0] += '<A HREF="/menu1/menu1_1.html" CLASS=sub_menu>About Uljin</A> | ';
SubMenu[0] += '<A HREF="/menu1/menu2_1.html" CLASS=sub_menu>Overview</A> | ';
SubMenu[0] += '<A HREF="/menu1/menu3_1.html" CLASS=sub_menu>Council</A>';

SubMenu[1] += '<A HREF="/menu2/menu1_1.html" CLASS=sub_menu>Uljin Festival</A> | ';
SubMenu[1] += '<A HREF="/menu2/menu1_2.html" CLASS=sub_menu>Historic Site & Temple</A> | ';
SubMenu[1] += '<A HREF="/menu2/menu1_3.html" CLASS=sub_menu>Rest Area & Museum</A> | ';
SubMenu[1] += '<A HREF="/menu2/menu1_4.html" CLASS=sub_menu>Special Products</A> | ';
SubMenu[1] += '<A HREF="/menu2/menu1_5.html" CLASS=sub_menu>Sightseeing place</A> | ';
SubMenu[1] += '<A HREF="/menu2/menu1_6.html" CLASS=sub_menu>Theme Tour</A>';

SubMenu[2] += '<A HREF="/menu3/menu1_1.html" CLASS=sub_menu>Culture & Tourism Plan</A> | ';
SubMenu[2] += '<A HREF="/menu3/menu1_2.html" CLASS=sub_menu>Welfare Plan </A> | ';
SubMenu[2] += '<A HREF="/menu3/menu1_3.html" CLASS=sub_menu>Main Project</A> | ';
SubMenu[2] += '<A HREF="/menu3/menu1_4.html" CLASS=sub_menu>Uljin Vision 21</A>';

SubMenu[3] += '<A HREF="/menu4/menu1_1.html" CLASS=sub_menu>Tourist Map</A> | ';
SubMenu[3] += '<A HREF="/menu4/menu1_2.html" CLASS=sub_menu>Traffic Information</A> | ';
SubMenu[3] += '<A HREF="/menu4/menu1_3.html" CLASS=sub_menu>Accommodation</A>';

// Å×ÀÌºí ½ÃÀÛ
document.write('<table cellpadding="0" cellspacing="0" border="0" width="100%">');
document.write('<tr>');
document.write('<td>');
document.write('<table cellpadding="0" cellspacing="0" border="0" width="100%">');
document.write('<tr>');
document.write('<td>');  // ´ëºÐ·ù ±âº» ¹è°æ»ö

// ´ëºÐ·ù Ãâ·Â
document.write('<table cellpadding="0" cellspacing="0" border="0" width="100%">');
document.write('<tr>');
document.write('<td style="background-image:url(/images/menu_bg.gif)" width="350">');
document.write('</td>');

for ( i=0 ; i<Menu.length ; i++ )
{
	var tar_bar = '';

	document.write('<th height='+Menu_height+' style="background-image:url(/images/menu_bg.gif); background-repeat:repeat-x" id="M_menu'+i+'"><a href='+Menu_url[i]+' onmouseover="javascript:MenuChange('+i+')" class="eng_menu" '+ tar_bar +' >'+Menu[i]+'</th>');
	
	if (i != Menu.length - 1) {
		document.write('<th style="background-image:url(/images/menu_bg.gif)">');
		document.write('<table cellpadding=0 cellspacing=0 border=0>');
		document.write('<tr>');
		document.write('<td>|</td>');
		document.write('</tr>');
		document.write('</table>');
		document.write('</th>');
	}
}


document.write('</tr></table>');

document.write('</td></tr><tr><td bgcolor="#FFFFFF" height="1"></td></tr><tr><td bgcolor='+Ms_Bgcolor+' height='+SubMenu_height+'>');
document.write('<table cellpadding=0 cellspacing=0 border=0 width="100%"><tr><td height='+SubMenu_height+'>');
document.write('<ilayer id="nilayer" width="100%" height='+SubMenu_height+'><layer id="nlayer" width="100%" height='+SubMenu_height+'><div id="E_version">&nbsp;</div></layer></ilayer>');
document.write('</td></tr></table>');
document.write('</td></tr></table></td></tr></table>');


function MenuColor(Bclr)
{
	if (document.all)
	{
		document.all.M_menu0.style.background = M_Bgcolor;
		document.all.M_menu1.style.background = M_Bgcolor;
		document.all.M_menu2.style.background = M_Bgcolor;
		document.all.M_menu3.style.background = M_Bgcolor;
		document.all.M_menu4.style.background = M_Bgcolor;
		document.all.M_menu5.style.background = M_Bgcolor;
		document.all.M_menu6.style.background = M_Bgcolor;

		Bclr.style.background = M_mouse_Bgcolor;
	}
	else if (document.getElementById)
	{
		document.getElementById("M_menu0").style.background = M_Bgcolor;
		document.getElementById("M_menu1").style.background = M_Bgcolor;
		document.getElementById("M_menu2").style.background = M_Bgcolor;
		document.getElementById("M_menu3").style.background = M_Bgcolor;
		document.getElementById("M_menu4").style.background = M_Bgcolor;
		document.getElementById("M_menu5").style.background = M_Bgcolor;
		document.getElementById("M_menu6").style.background = M_Bgcolor;

		Bclr.style.background = M_mouse_Bgcolor;
	}
}

function MenuChange(nval)
{
  Sub_Val = SubMenu[nval];
  Sub_space = '';
  Sub_np = new Array;

	nval += 1;

	for ( j = 0 ; j < nval ; j++ )
	{
		Sub_np[0] = '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'
		Sub_np[1] = '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; '
		Sub_np[2] = '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; '
		Sub_np[3] = '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; '

		Sub_space = Sub_np[j];
	}

	if (document.layers)
	{
		document.nilayer.document.nlayer.document.write(Sub_space + Sub_Val)
		document.nilayer.document.nlayer.document.close()
	}
	else if (document.all)
	{
		E_version.innerHTML = Sub_space + Sub_Val;
	}
	else {
		document.getElementById("E_version").innerHTML = Sub_space + Sub_Val;
	}
}


//-->