	var menuObj = null;

	if (location.href.indexOf("/corporate/contribution01")>-1)
		menuObj = document.getElementById("corporate1");
	else if (location.href.indexOf("contribution01")>-1)
		menuObj = document.getElementById("corporate1");
	else if (location.href.indexOf("scode=003")>-1)
		menuObj = document.getElementById("GNB_MENU3");
	else if (location.href.indexOf("/item/pac")>-1)
		menuObj = document.getElementById("GNB_MENU2");
	else if (location.href.indexOf("/item/aircar")>-1)
		menuObj = document.getElementById("GNB_MENU2");
	else if (location.href.indexOf("/item/golf")>-1)
		menuObj = document.getElementById("GNB_MENU4");
	else if (location.href.indexOf("/item/ld")>-1)
		menuObj = document.getElementById("GNB_MENU5");
	else if (location.href.indexOf("/item/ren")>-1)
		menuObj = document.getElementById("GNB_MENU6");
	else if (location.href.indexOf("/item/ss")>-1 || location.href.indexOf("/item/bes")>-1)
		menuObj = document.getElementById("GNB_MENU7");
	else if (location.href.indexOf("/item/air_")>-1)
		menuObj = document.getElementById("GNB_MENU8");
	else if (location.href.indexOf("/planner")>-1)
		menuObj = document.getElementById("GNB_MENU9");
	else if (location.href.indexOf("/info/")>-1)
		menuObj = document.getElementById("GNB_MENU10");

	if (menuObj != null) {
		menuObj.className = "on";
		menuObj.onmouseout = function() {};
	}
