// 大きいナビの画像変更
function Navi_action() {
	$("#subnavi1,#subnavi2,#subnavi3,#subnavi4,#subnavi5,#subnavi6").css("display","none");

	$("#navi1 a").css("background","url(http://www.tl-logicom.co.jp/images/navi1.jpg) no-repeat left top");
	$("#navi2 a").css("background","url(http://www.tl-logicom.co.jp/images/navi2.jpg) no-repeat left top");
	$("#navi3 a").css("background","url(http://www.tl-logicom.co.jp/images/navi3.jpg) no-repeat left top");
	$("#navi4 a").css("background","url(http://www.tl-logicom.co.jp/images/navi4.jpg) no-repeat left top");
	$("#navi5 a").css("background","url(http://www.tl-logicom.co.jp/images/navi5.jpg) no-repeat left top");
	$("#navi6 a").css("background","url(http://www.tl-logicom.co.jp/images/navi6.jpg) no-repeat left top");

	if(location.href.match(/tl3pl/)) {
		$("#navi1 a").css("background","url(http://www.tl-logicom.co.jp/images/navi1_on.jpg) no-repeat left top");
		$("#subnavi1").css("display","block");
	} else if(location.href.match(/physical/)) {
		$("#navi2 a").css("background","url(http://www.tl-logicom.co.jp/images/navi2_on.jpg) no-repeat left top");
		$("#subnavi2").css("display","block");
	} else if(location.href.match(/solution/)) {
		$("#navi3 a").css("background","url(http://www.tl-logicom.co.jp/images/navi3_on.jpg) no-repeat left top");
		$("#subnavi3").css("display","block");
	} else if(location.href.match(/approach/)) {
		$("#navi4 a").css("background","url(http://www.tl-logicom.co.jp/images/navi4_on.jpg) no-repeat left top");
		$("#subnavi4").css("display","block");
	} else if(location.href.match('company.html|/company/|kessan')) {
		$("#navi5 a").css("background","url(http://www.tl-logicom.co.jp/images/navi5_on.jpg) no-repeat left top");
		$("#subnavi5").css("display","block");
	} else if(location.href.match(/recruit/)) {
		$("#navi6 a").css("background","url(http://www.tl-logicom.co.jp/images/navi6_on.jpg) no-repeat left top");
		$("#subnavi6").css("display","block");
	};
};

// 黒い帯ナビ内リンクの色
function Current(ChangeColor) {
	$(ChangeColor).css("color","#ebb2b2");
};

// 左メニュー大カテゴリ
function subCurrent1(CurrentView1) {
	$(CurrentView1 + "+ ul").css("display","block");
	$(CurrentView1).css("fontWeight","bold");
	$(CurrentView1).css("background","url(http://www.tl-logicom.co.jp/images/menu-arrow_on.jpg) no-repeat left top");
	$(CurrentView1).css("backgroundPosition","2px 11px");
};

// 左メニュー小カテゴリ
function subCurrent2(CurrentView2) {
	$(CurrentView2).css("color","#ebb2b2");
	$($(CurrentView2).parent()).css("background","url(http://www.tl-logicom.co.jp/images/menu-sublist-bg2.jpg) repeat-x left top");
	$(CurrentView2).css("background","url(http://www.tl-logicom.co.jp/images/menu-sublist-arrow.gif) no-repeat 5px top");
};

// 左メニュー変則
function subCurrent3(CurrentView3) {
	$(CurrentView3 + "+ ul").css("display","block");
	$(CurrentView3).css("background","url(http://www.tl-logicom.co.jp/images/menu-arrow.jpg) no-repeat left top");
	$(CurrentView3).css("backgroundPosition","2px 11px");
};



$(function() {
	Navi_action();
	timerID = setTimeout("Navi_action()", 1500);
	timerID2 = setTimeout("",0);

	$("#navi li,#subnavi-wrap").mouseout(function() {
		timerID = setTimeout("Navi_action()", 1500);
	});
	$("#subnavi-wrap").mouseover(function() {
		clearTimeout(timerID);
		clearTimeout(timerID2);
	});
	$("#navi li").mouseover(function() {
		clearTimeout(timerID);
		clearTimeout(timerID2);
		var hoverId = $(this).attr("id");
		timerID2 = setTimeout(function() {
			$("#navi1 a").css("background","url(http://www.tl-logicom.co.jp/images/navi1.jpg) no-repeat left top");
			$("#navi2 a").css("background","url(http://www.tl-logicom.co.jp/images/navi2.jpg) no-repeat left top");
			$("#navi3 a").css("background","url(http://www.tl-logicom.co.jp/images/navi3.jpg) no-repeat left top");
			$("#navi4 a").css("background","url(http://www.tl-logicom.co.jp/images/navi4.jpg) no-repeat left top");
			$("#navi5 a").css("background","url(http://www.tl-logicom.co.jp/images/navi5.jpg) no-repeat left top");
			$("#navi6 a").css("background","url(http://www.tl-logicom.co.jp/images/navi6.jpg) no-repeat left top");

			$("#subnavi1,#subnavi2,#subnavi3,#subnavi4,#subnavi5,#subnavi6").css("display","none");

			if(	  hoverId=="navi1") {
				$("#navi1 a").css("background","url(http://www.tl-logicom.co.jp/images/navi1_on.jpg) no-repeat left top");
				$("#subnavi1").css("display")=="none"? $("#subnavi1").css("display","block"): null;
				return;
			} else if(hoverId=="navi2") {
				$("#navi2 a").css("background","url(http://www.tl-logicom.co.jp/images/navi2_on.jpg) no-repeat left top");
				$("#subnavi2").css("display")=="none"? $("#subnavi2").css("display","block"): null;
				return;
			} else if(hoverId=="navi3") {
				$("#navi3 a").css("background","url(http://www.tl-logicom.co.jp/images/navi3_on.jpg) no-repeat left top");
				$("#subnavi3").css("display","block");
				return;
			} else if(hoverId=="navi4") {
				$("#navi4 a").css("background","url(http://www.tl-logicom.co.jp/images/navi4_on.jpg) no-repeat left top");
				$("#subnavi4").css("display","block");
				return;
			} else if(hoverId=="navi5") {
				$("#navi5 a").css("background","url(http://www.tl-logicom.co.jp/images/navi5_on.jpg) no-repeat left top");
				$("#subnavi5").css("display","block");
				return;
			} else if(hoverId=="navi6") {
				$("#navi6 a").css("background","url(http://www.tl-logicom.co.jp/images/navi6_on.jpg) no-repeat left top");
				$("#subnavi6").css("display","block");
				return;
			};
		},500);
	});

// 黒い帯のナビ部分開閉及び色変更

// ティーエルロジコムの3PL

	if(location.href.match('tl3pl')) {
			subCurrent3(".menu-box p:eq(2)");
	
	

// 物流サービス
	// 物流サービス/3PL
	} else if(location.href.match('physical/3pl')) {
		
			Current("#subnavi2 a:eq(0)");
			subCurrent3(".menu-box p:eq(2)");
			/*
			 * ↑でコンサルタント紹介のdisplayを制御しています。
			 * 下にある/3pl-consullist|3pl-consul_01～となっている部分の
			 * subCurrent2(".menu-sublist1 a:eq(xx)");の部分のxxを
			 * 上の数字と必ず一致させてください。
			 */

			
			

		if(location.href.match(/3pl-about/)) {
			subCurrent1(".menu-box p:eq(0)");

		}	if(location.href.match(/3pl-project/)) {
			subCurrent1(".menu-box p:eq(1)");


		} else if (location.href.match(/3pl-consul/)) {
			subCurrent1(".menu-box p:eq(2)");

			if(location.href.match(/3pl-consullist|3pl-consul_01|3pl-consul_02|3pl-consul_03|3pl-consul_04|3pl-consul_05/)) {
				subCurrent2(".menu-sublist1 a:eq(0)");
			}

		} else if (location.href.match(/3pl-case1/)) {
			subCurrent1(".menu-box p:eq(3)");

		};



	// 物流サービス/トラック輸送
	} else if(location.href.match('physical/transport')) {
		Current("#subnavi2 a:eq(1)");
		if(location.href.match(/consumer/)) {
			subCurrent1(".menu-box p:eq(0)");
			if(location.href.match(/consumer-lineup/)) {
				subCurrent2(".menu-sublist1 a:eq(0)");
			} else if(location.href.match(/consumer-case1/)) {
				subCurrent2(".menu-sublist1 a:eq(1)");
			};
		} else if(location.href.match(/weight/)) {
			subCurrent1(".menu-box p:eq(1)");
			if(location.href.match(/weight-lineup/)) {
				subCurrent2(".menu-sublist2 a:eq(0)");
			} else if(location.href.match(/weight-case1/)) {
				subCurrent2(".menu-sublist2 a:eq(1)");
			};
		} else if(location.href.match(/special/)) {
			subCurrent1(".menu-box p:eq(2)");
			if(location.href.match(/special-lineup/)) {
				subCurrent2(".menu-sublist3 a:eq(0)");
			} else if(location.href.match(/special-train/)) {
				subCurrent2(".menu-sublist3 a:eq(1)");
			} else if(location.href.match(/special-case1/)) {
				subCurrent2(".menu-sublist3 a:eq(2)");
			};
		} else if(location.href.match(/safe/)) {
			subCurrent1(".menu-box p:eq(3)");
		} else if(location.href.match(/eco/)) {
			subCurrent1(".menu-box p:eq(4)");
		};
	// 物流サービス/センター運営
	} else if(location.href.match('physical/center')) {
		Current("#subnavi2 a:eq(2)");
		if(location.href.match(/case-manage/)) {
			subCurrent1(".menu-box p:eq(0)");
		} else if(location.href.match(/case-improve/)) {
			subCurrent1(".menu-box p:eq(0)");
			subCurrent1(".menu-box p:eq(1)");
			if(location.href.match(/case-improve-case1/)) {
				subCurrent2(".menu-sublist1 a:eq(0)");
			} else if(location.href.match(/case-improve-case2/)) {
				subCurrent2(".menu-sublist1 a:eq(1)");
			} else if(location.href.match(/case-improve-case3/)) {
				subCurrent2(".menu-sublist1 a:eq(2)");
			};
		};
	// 物流サービス/倉庫
	} else if(location.href.match(/warehouse/)) {
		Current("#subnavi2 a:eq(3)");
		if(location.href.match(/area/)) {
			subCurrent1(".menu-box p:eq(0)");
		} else if(location.href.match(/type/)) {
			subCurrent1(".menu-box p:eq(1)");
		};
	// 物流サービス/庫内オペレーション
	} else if(location.href.match(/supply/)) {
		Current("#subnavi2 a:eq(4)");
		if(location.href.match(/process/)) {
			subCurrent1(".menu-box p:eq(0)");
			if(location.href.match(/process-case4/)) {
				subCurrent2(".menu-sublist1 a:eq(0)");
			} else if(location.href.match(/process-case2/)) {
				subCurrent2(".menu-sublist1 a:eq(1)");
			} else if(location.href.match(/process-case1/)) {
				subCurrent2(".menu-sublist1 a:eq(2)");
			} else if(location.href.match(/process-case3/)) {
				subCurrent2(".menu-sublist1 a:eq(3)");
			};
		} else if(location.href.match(/order/)) {
			subCurrent1(".menu-box p:eq(1)");
			if(location.href.match(/order-case1/)) {
				subCurrent2(".menu-sublist5 a:eq(0)");
			} else if(location.href.match(/order-case2/)) {
				subCurrent2(".menu-sublist5 a:eq(1)");
			} else if(location.href.match(/order-case3/)) {
				subCurrent2(".menu-sublist5 a:eq(2)");
			} else if(location.href.match(/order-case4/)) {
				subCurrent2(".menu-sublist5 a:eq(3)");
			} else if(location.href.match(/order-case5/)) {
				subCurrent2(".menu-sublist5 a:eq(4)");
			};
		} else if(location.href.match(/packing/)) {
			subCurrent1(".menu-box p:eq(2)");
			if(location.href.match(/packing-case2/)) {
				subCurrent2(".menu-sublist2 a:eq(0)");
			} else if(location.href.match(/packing-case1/)) {
				subCurrent2(".menu-sublist2 a:eq(1)");
			};
		} else if(location.href.match(/agency/)) {
			subCurrent1(".menu-box p:eq(3)");
			if(location.href.match(/agency-case1/)) {
				subCurrent2(".menu-sublist3 a:eq(0)");
			};
		} else if(location.href.match(/wms/)) {
			subCurrent1(".menu-box p:eq(4)");
			if(location.href.match(/wms-case1/)) {
				subCurrent2(".menu-sublist4 a:eq(0)");
			};
		};
	// 物流サービス/ファシリティ
	} else if(location.href.match(/internal/)) {
		Current("#subnavi2 a:eq(5)");
		if(location.href.match(/tasukaru/)) {
			subCurrent1(".menu-box p:eq(0)");
			if(location.href.match(/concept/)) {
				subCurrent2(".menu-sublist1 a:eq(0)");
			} else if(location.href.match(/merit/)) {
				subCurrent2(".menu-sublist1 a:eq(1)");
			} else if(location.href.match(/advance/)) {
				subCurrent2(".menu-sublist1 a:eq(2)");
			} else if(location.href.match(/tasukaru-case1/)) {
				subCurrent2(".menu-sublist1 a:eq(3)");
			} else if(location.href.match(/tasukaru-case6/)) {
				subCurrent2(".menu-sublist1 a:eq(4)");
			} else if(location.href.match(/tasukaru-case3/)) {
				subCurrent2(".menu-sublist1 a:eq(5)");
			} else if(location.href.match(/tasukaru-case4/)) {
				subCurrent2(".menu-sublist1 a:eq(6)");
			} else if(location.href.match(/tasukaru-case5/)) {
				subCurrent2(".menu-sublist1 a:eq(7)");
			};

		} else if(location.href.match(/office/)) {
			subCurrent1(".menu-box p:eq(1)");
			if(location.href.match(/office-project/)) {
				subCurrent2(".menu-sublist2 a:eq(0)");
			} else if(location.href.match(/office-case1/)) {
				subCurrent2(".menu-sublist2 a:eq(1)");
			} else if(location.href.match(/office-case2/)) {
				subCurrent2(".menu-sublist2 a:eq(2)");
			};

		} else if(location.href.match(/fixtures/)) {
			subCurrent1(".menu-box p:eq(2)");

		} else if(location.href.match(/move/)) {
			subCurrent1(".menu-box p:eq(3)");
			if(location.href.match(/move-case1/)) {
				subCurrent2(".menu-sublist3 a:eq(0)");
			};

		} else if(location.href.match(/document/)) {
			subCurrent1(".menu-box p:eq(4)");
			if(location.href.match(/document-case1/)) {
				subCurrent2(".menu-sublist4 a:eq(0)");
			};
		};
	// 物流サービス/鉄道輸送
	} else if(location.href.match(/express/)) {
		Current("#subnavi2 a:eq(6)");
		if(location.href.match(/advantage/)) {
			subCurrent1(".menu-box p:eq(0)");
		} else if(location.href.match(/co2/)) {
			subCurrent1(".menu-box p:eq(1)");
		} else if(location.href.match(/container/)) {
			subCurrent1(".menu-box p:eq(2)");
		} else if(location.href.match(/express-case1/)) {
			subCurrent1(".menu-box p:eq(3)");
		};
	// 物流サービス/国際物流
	} else if(location.href.match(/global/)) {
		Current("#subnavi2 a:eq(7)");
		if(location.href.match(/forward/)) {
			subCurrent1(".menu-box p:eq(0)");
			if(location.href.match(/forward-case1/)) {
				subCurrent2(".menu-sublist1 a:eq(0)");
			};
		} else if(location.href.match(/anex/)) {
			subCurrent1(".menu-box p:eq(1)");
			if(location.href.match(/user1/)) {
				subCurrent2(".menu-sublist2 a:eq(0)");
			};
		} else if(location.href.match(/china/)) {
			subCurrent1(".menu-box p:eq(2)");
		};
	//物流サービスメイン
	} else if(location.href.match('physical/')) {
		
// 事例紹介

	// 事例紹介/ニーズ

	} else if(location.href.match(/needs-manage/)) {
		subCurrent1(".menu-box1 p:eq(1)");
	} else if(location.href.match(/needs-stock/)) {
		subCurrent1(".menu-box1 p:eq(2)");
	} else if(location.href.match(/needs-out/)) {
		subCurrent1(".menu-box1 p:eq(3)");
	} else if(location.href.match(/needs-lead/)) {
		subCurrent1(".menu-box1 p:eq(4)");
	} else if(location.href.match(/needs-env/)) {
		subCurrent1(".menu-box1 p:eq(5)");
	} else if(location.href.match(/needs-consign/)) {
		subCurrent1(".menu-box1 p:eq(6)");
	} else if(location.href.match(/needs-officemove/)) {
		subCurrent1(".menu-box1 p:eq(7)");
	} else if(location.href.match(/needs-order/)) {
		subCurrent1(".menu-box1 p:eq(8)");



	// 事例紹介/業種
	} else if(location.href.match(/retail/)) {
		subCurrent1(".menu-box2 p:eq(1)");
	} else if(location.href.match(/wholesale/)) {
		subCurrent1(".menu-box2 p:eq(2)");
	} else if(location.href.match(/manufacturer/)) {
		subCurrent1(".menu-box2 p:eq(3)");

	// 事例紹介/機能
	} else if(location.href.match('function/transport')) {
		subCurrent1(".menu-box3 p:eq(1)");
	} else if(location.href.match(/keeping/)) {
		subCurrent1(".menu-box3 p:eq(2)");
	} else if(location.href.match(/distribute/)) {
		subCurrent1(".menu-box3 p:eq(3)");
	} else if(location.href.match(/shipment/)) {
		subCurrent1(".menu-box3 p:eq(4)");
	} else if(location.href.match(/infosys/)) {
		subCurrent1(".menu-box3 p:eq(5)");
// 環境と安全への取り組み

	} else if(location.href.match(/approach/)) {
		if(location.href.match(/policy/)) {
			Current("#subnavi4 a:eq(0)");
			subCurrent1(".menu-box p:eq(0)");
		} else if(location.href.match(/lowpollution/)) {
			Current("#subnavi4 a:eq(1)");
			subCurrent1(".menu-box p:eq(1)");
		} else if(location.href.match(/safety/)) {
			Current("#subnavi4 a:eq(2)");
			subCurrent1(".menu-box p:eq(2)");
		} else if(location.href.match(/activity/)) {
			Current("#subnavi4 a:eq(3)");
			subCurrent1(".menu-box p:eq(3)");
		} else if(location.href.match(/iso/)) {
			Current("#subnavi4 a:eq(4)");
			subCurrent1(".menu-box p:eq(4)");
		}
// サプライチェーン
	} else if(location.href.match(/procure/)) {
		subCurrent1(".menu-box p:eq(0)");
		if(location.href.match(/material/)) {
			subCurrent2(".menu-sublist1 a:eq(0)");
		} else if(location.href.match(/milk/)) {
			subCurrent2(".menu-sublist1 a:eq(1)");
		} else if(location.href.match(/vmi/)) {
			subCurrent2(".menu-sublist1 a:eq(2)");
		} else if(location.href.match(/buyer/)) {
			subCurrent2(".menu-sublist1 a:eq(3)");
		};
	} else if(location.href.match(/production/)) {
		subCurrent1(".menu-box p:eq(1)");
		if(location.href.match(/production-line/)) {
			subCurrent2(".menu-sublist2 a:eq(0)");
		} else if(location.href.match(/factory/)) {
			subCurrent2(".menu-sublist2 a:eq(1)");
		} else if(location.href.match(/production-pack/)) {
			subCurrent2(".menu-sublist2 a:eq(2)");
		};
	} else if(location.href.match(/sales/)) {
		subCurrent1(".menu-box p:eq(2)");
		if(location.href.match(/sales-manage/)) {
			subCurrent2(".menu-sublist3 a:eq(0)");
		} else if(location.href.match(/additional/)) {
			subCurrent2(".menu-sublist3 a:eq(1)");
		} else if(location.href.match(/shoproot/)) {
			subCurrent2(".menu-sublist3 a:eq(2)");
		} else if(location.href.match(/joint/)) {
			subCurrent2(".menu-sublist3 a:eq(3)");
		};
	} else if(location.href.match(/vein/)) {
		subCurrent1(".menu-box p:eq(3)");
		if(location.href.match(/vein-recycle/)) {
			subCurrent2(".menu-sublist4 a:eq(0)");
		} else if(location.href.match(/oa-recycle/)) {
			subCurrent2(".menu-sublist4 a:eq(1)");
		} else if(location.href.match(/confidential/)) {
			subCurrent2(".menu-sublist4 a:eq(2)");
		};

// 物流現場改善事例

	} else if(location.href.match(/case/)) {
		if(location.href.match(/tsuchiura_dc2/)) {
			Current("#subnavi6 a:eq(0)");
			subCurrent1(".menu-box p:eq(0)");
		} else if(location.href.match(/tsuchiura_dc/)) {
			Current("#subnavi6 a:eq(1)");
			subCurrent1(".menu-box p:eq(1)");
		} else if(location.href.match(/oyama/)) {
			Current("#subnavi6 a:eq(2)");
			subCurrent1(".menu-box p:eq(2)");
		} else if(location.href.match(/higashiougi_dc/)) {
			Current("#subnavi6 a:eq(3)");
			subCurrent1(".menu-box p:eq(3)");
		} else if(location.href.match(/machida/)) {
			Current("#subnavi6 a:eq(4)");
			subCurrent1(".menu-box p:eq(4)");
		}


// 社会見学

	// 社会見学

		} else if(location.href.match(/social/)) {
			subCurrent1(".menu-box p:eq(0)");
			if(location.href.match(/social-01/)) {
				subCurrent2(".menu-sublist1 a:eq(0)");
		} else if(location.href.match(/social-02/)) {
				subCurrent2(".menu-sublist1 a:eq(1)");
		} else if(location.href.match(/social-03/)) {
				subCurrent2(".menu-sublist1 a:eq(2)");
		} else if(location.href.match(/social-04/)) {
				subCurrent2(".menu-sublist1 a:eq(3)");
		}

	// 物流クリニック

		} else if(location.href.match(/clinic/)) {
			subCurrent1(".menu-box p:eq(0)");
			if(location.href.match(/clinic-01/)) {
				subCurrent2(".menu-sublist1 a:eq(0)");
		} else if(location.href.match(/clinic-02/)) {
			subCurrent2(".menu-sublist1 a:eq(1)");
		} else if(location.href.match(/clinic-03/)) {
			subCurrent2(".menu-sublist1 a:eq(2)");
		} else if(location.href.match(/clinic-04/)) {
			subCurrent2(".menu-sublist1 a:eq(3)");
		} else if(location.href.match(/clinic-05/)) {
			subCurrent2(".menu-sublist1 a:eq(4)");
		} else if(location.href.match(/clinic-06/)) {
			subCurrent2(".menu-sublist1 a:eq(5)");
		} else if(location.href.match(/clinic-07/)) {
			subCurrent2(".menu-sublist1 a:eq(6)");
		}

// お問い合わせ
	} else if(location.href.match(/contact/)) {
		if(location.href.match(/business/)) {
			subCurrent1(".menu-box p:eq(0)");
		} else if(location.href.match(/other/)) {
			subCurrent1(".menu-box p:eq(1)");
		}
// 企業情報
	} else if(location.href.match(/outline/)) {
		Current("#subnavi5 a:eq(0)");
		subCurrent1(".menu-box1 p:eq(1)");
	} else if(location.href.match(/history/)) {
		Current("#subnavi5 a:eq(1)");
		subCurrent1(".menu-box1 p:eq(2)");
	} else if(location.href.match(/organization/)) {
		Current("#subnavi5 a:eq(2)");
		subCurrent1(".menu-box1 p:eq(3)");
	} else if(location.href.match(/compliance/)) {
		Current("#subnavi5 a:eq(3)");
		subCurrent1(".menu-box1 p:eq(4)");
	} else if(location.href.match(/network/)) {
		Current("#subnavi5 a:eq(4)");
		subCurrent1(".menu-box1 p:eq(5)");
	} else if(location.href.match(/tl_group/)) {
		Current("#subnavi5 a:eq(5)");
		subCurrent1(".menu-box1 p:eq(6)");
	} else if(location.href.match('/kessan/$|/kessan/index.html')) {
		Current("#subnavi5 a:eq(6)");
		subCurrent1(".menu-box2 p:eq(1)");
	} else if(location.href.match(/achievements.html/)) {
		Current("#subnavi5 a:eq(7)");
		subCurrent1(".menu-box2 p:eq(2)");
	} else if(location.href.match(/archive.html/)) {
		Current("#subnavi5 a:eq(8)");
		subCurrent1(".menu-box2 p:eq(3)");
// インフォメーション
	} else if(location.href.match('/$|/index.html')) {
		subCurrent1(".menu-box p:eq(0)");
	} else if(location.href.match(/privacy/)) {
		subCurrent1(".menu-box p:eq(1)");
// 採用情報
	} else if(location.href.match(/recruit/)) {
	};
});



