//menu
function goMenu( chk, chk2 )
{
	var locArray = new Array();
	locArray[0] = new Array(
		"#",
		"/index.html",//1
		"/en_index.html",//2
		"/customer/customer04.html",//3
		"/company/sitemap.html"//4
	);

	locArray[1] = new Array(
		"#",
		"/company/company01.html",//1
		"/company/company02.html",//2
		"/company/company03.html",//3
		"/company/company03_2.html",//4
		"#",//5
		"/company/company04.html",//6
		"/company/company05.html",//7
		"/company/company06.html"//8
	);
	
	
	locArray[2] = new Array(
		"#",
		"/product/product01.html", //1
		"/product/product02.html",  //2
		"/product/product03.html", //3
		"/product/product04.html",  //4
		"/product/product05.html",  //5
		"/product/product06.html", //6
		"/product/product07.html" //7
	);
	
	locArray[3] = new Array(
		"#",
		"/lab/lab01.html",//1
		"/lab/lab01_2.html",//2
		"/lab/lab01_3.html",//3
		"/lab/lab02.html",//4
		"/lab/lab03.html"//5
		
	);
	
	locArray[4] = new Array(
		"#",
		"/customer/customer01.html",//1
		"/customer/customer02.html", //2
		"/customer/qna.html",//3
		"/customer/customer04.html",//4
		"/customer/pds.html"//5
	);

	
	locArray[5] = new Array(
		"#",
		"/news/news01.html",//1
		"/news/news02.html", //2
		"/news/news03.html"//3
	);
	

	
	document.location.href = locArray[chk][chk2];
}
