// JavaScript Document
<!--
var depth = '';

function dir(dp) {
	for( i=0; i<dp; i++ ){
		depth += '../';
	}
}

function head() {
	document.write('<div class="left"><a href="'+depth+'index.html"><img id="head_logo" src="'+depth+'images/head_logo.gif" alt="横浜ゴム" width="151" height="22" border="0" /><br /><img id="head_title" src="'+depth+'images/head_title.gif" alt="RECRUITING INFORMATION 2010" width="336" height="11" border="0" /></a></div><div id="head_entry" class="right"><a href="'+depth+'entry/index.html"><p>ENTRY</p></a></div><div class="clear"></div>');
}

var js_str = '';

js_str += '<!-- MENU -->';
js_str += '<ul id="menu">';

menu_array = ['MENU'];
menu_array.push('about');
menu_array.push('interview');
menu_array.push('people');
menu_array.push('project');
menu_array.push('message');
menu_array.push('enquete');
menu_array.push('information');
menu_array.push('outline');

text_array = ['TEXT'];
text_array.push('横浜ゴムの歩む道');
text_array.push('TOPインタビュー');
text_array.push('それぞれの道');
text_array.push('新たな道');
text_array.push('未来へと歩むあなたへ');
text_array.push('ちょっと一息');
text_array.push('横浜ゴムへの道しるべ');
text_array.push('会社概要');

link_array = ['LINK'];
link_array.push('about/index.html');
link_array.push('interview/index.html');
link_array.push('people/index.html');
link_array.push('project/index.html');
link_array.push('message/index.html');
link_array.push('enquete/index.html');
link_array.push('information/index.html');
link_array.push('outline/index.html');

active_array = ['ACTIVE'];
active_array.push(1);
active_array.push(1);
active_array.push(1); //それぞれの道
active_array.push(1); //新たな道
active_array.push(1);
active_array.push(1); //ちょっと一息
active_array.push(1);
active_array.push(1);

function menu(name) {
	for( i=1; i<menu_array.length; i++ ){
		if( menu_array[i] == name ){
			js_str += '<li id="menu'+i+'" class="menu_select"><p>'+text_array[i]+'</p></li>';
		} else if(active_array[i]){
			js_str += '<li id="menu'+i+'"><a href="'+depth+link_array[i]+'"><p>'+text_array[i]+'</p></a></li>';
		} else {
			js_str += '<li id="menu'+i+'"><p>'+text_array[i]+'</p></li>';
		}
	}
	
	js_str += '</ul><!-- MENU END -->';
	js_str += '';
	js_str += '';
	js_str += '';
	js_str += '';
	js_str += '';
	
	document.write(js_str);
}

function foot() {
	document.write('<div class="left"><a href="http://www.yrc.co.jp/" target="_blank">横浜ゴム 公式サイト</a>｜<a href="'+depth+'../index.html">採用TOP</a>｜<a href="'+depth+'sitemap/index.html">サイトマップ</a></div><div class="right">Copyright©2009 THE YOKOHAMA RUBBER CO., LTD. All Rights Reserved.</div><div class="clear"></div>');
}
// -->