//----------------------------
// フッターメニュー表示
//----------------------------
// TOPページ用
function footer_menu_top(){ 
document.write('			<div class="footerMenu">');
document.write('			日本電産マシナリー株式会社　｜');
document.write('			<a href="sitemap/index.html" title="サイトマップ">サイトマップ</a>｜');
document.write('			<a href="policy/index.html" title="プライバシーポリシー">プライバシーポリシー</a>｜');
document.write('			</div>');
}
// 中面ページ 1階層目用 共通
function footer_menu_common_01(){
document.write('			<div class="footerMenu">');
document.write('			日本電産マシナリー株式会社　｜');
document.write('			<a href="../sitemap/index.html" title="サイトマップ">サイトマップ</a>｜');
document.write('			<a href="../policy/index.html" title="プライバシーポリシー">プライバシーポリシー</a>｜');
document.write('			</div>');
}
// 中面ページ 2階層目用 共通
function footer_menu_common_02(){
document.write('			<div class="footerMenu">');
document.write('			日本電産マシナリー株式会社　｜');
document.write('			<a href="../../sitemap/index.html" title="サイトマップ">サイトマップ</a>｜');
document.write('			<a href="../../policy/index.html" title="プライバシーポリシー">プライバシーポリシー</a>｜');
document.write('			</div>');
}

