function addElement_on() {


//------------------------------------------------------------
//  設定
//------------------------------------------------------------

//01の設定----------
	//divタグに出力されるHTML
	var pdnav01out ='';
	//divタグの生成
	var element = parent.document.createElement('div');
	element.id = 'pdnav01';
	element.innerHTML = pdnav01out;
	element.style.display = 'none';
	//親フレームにタグを出力
	var objBody = parent.document.getElementById('wrapper');
	objBody.appendChild(element);

//02の設定----------
	var pdnav02out ='<ul class="pd_list"><li><a href="/start/index.html" class="pd_top">転職が初めての方へ</a></li><li><a href="/advantage/index.html">リーベルの強み</a></li><li><a href="/advantage/merit.html">リーベルを利用するメリット</a></li><li><a href="/advantage/flow/index.html">無料転職サポートの流れ</a></li><li><a href="/advantage/data.html">データでみる転職実績</a></li><li><a href="/advantage/interview/index.html">転職成功者の声</a></li><li><a href="/advantage/consultants/index.html">キャリアコンサルタント紹介</a></li><li><a href="/advantage/commitment.html">リーベルのお約束</a></li><li><a href="/advantage/question.html">よくあるご質問</a></li></ul>';
	var element02 = parent.document.createElement('div');
	element02.id = 'pdnav02';
	element02.innerHTML = pdnav02out;
	element02.style.display = 'none';
	var objBody = parent.document.getElementById('wrapper');
	objBody.appendChild(element02);

//03の設定----------
	var pdnav03out ='<ul class="pd_list"><li><a href="/jb/index.jsp" class="pd_top">求人情報検索</a></li><li><a href="/ex_jb_PositionByCompany.do">企業別求人</a></li><li><a href="/ex_jb_PositionByWork.do">職種別求人</a></li><li><a href="/jb/detail-search.jsp">求人情報詳細検索</a></li><li><a href="/ex_jb_Recommend.do?crk_kind=B">業界別：業界動向</a></li><li><a href="/ex_jb_Recommend.do?crk_kind=J">職種別：業界動向</a></li><li><a href="/job/interview/index.html">注目企業インタビュー</a></li><li><a href="/secret/index.html">非公開求人とは</a></li></ul>';
	var element03 = parent.document.createElement('div');
	element03.id = 'pdnav03';
	element03.innerHTML = pdnav03out;
	element03.style.display = 'none';
	var objBody = parent.document.getElementById('wrapper');
	objBody.appendChild(element03);

//04の設定----------
	var pdnav04out ='<ul class="pd_list"><li><a href="/service/index.html" class="pd_top">サービス一覧</a></li><li><a href="/advantage/flow/index.html">転職サポートサービス</a></li><li><a href="/headhunt/index.html">ヘッドハンティングサービス</a></li><li><a href="/ex_ccc_CccTop.do">キャリア相談会</a></li><li><a href="/service/assessment/index.jsp">年収査定サービス</a></li><li><a href="/secret/index.html">非公開求人の提供</a></li><li><a href="/ex_ccs_CcsTop.do">キャリア採用セミナー</a></li><li><a href="/service/coach/index.html">コーチングサービス</a></li></ul>';
	var element04 = parent.document.createElement('div');
	element04.id = 'pdnav04';
	element04.innerHTML = pdnav04out;
	element04.style.display = 'none';
	var objBody = parent.document.getElementById('wrapper');
	objBody.appendChild(element04);

//05の設定----------
	var pdnav05out ='<ul class="pd_list"><li><a href="/knowhow/index.html" class="pd_top">転職ノウハウ</a></li><li><a href="/knowhow/manual/index.html">転職マニュアル</a></li><li><a href="/knowhow/rireki/index.html">履歴書フォーム</a></li><li><a href="/knowhow/syokureki/index.html">職務経歴書フォーム</a></li><li><a href="/knowhow/mensetsu.html">面接の心得</a></li><li><a href="/knowhow/resignation.html">退職マニュアル</a></li><li><a href="/knowhow/column/index.html">コラム：転職の技術</a></li><li><a href="/knowhow/careerlab/index.html">IT業界職種研究</a></li><li><a href="/knowhow/faq.html">転職FAQ</a></li></ul>';
	var element05 = parent.document.createElement('div');
	element05.id = 'pdnav05';
	element05.innerHTML = pdnav05out;
	element05.style.display = 'none';
	var objBody = parent.document.getElementById('wrapper');
	objBody.appendChild(element05);

//06の設定----------
	//divタグに出力されるHTML
	var pdnav06out ='';
	//divタグの生成
	var element06 = parent.document.createElement('div');
	element06.id = 'pdnav06';
	element06.innerHTML = pdnav06out;
	element06.style.display = 'none';
	//親フレームにタグを出力
	var objBody = parent.document.getElementById('wrapper');
	objBody.appendChild(element);

//URLの取得----------
	var urlstr = parent.location.href;


//------------------------------------------------------------
//  アクション
//------------------------------------------------------------

//ページ移動時のアクション------------------------------------
window.onunload = function() {
}


//01のアクション----------------------------------------------
	//グローバルナビ　に　マウスオーバー
	document.getElementById('gnav_home_a1').onmouseover = function(){
		element.style.display = 'block';
		element02.style.display = 'none';
		element03.style.display = 'none';
		element04.style.display = 'none';
		element05.style.display = 'none';
		element06.style.display = 'none';
		document.getElementById('gnav_home_a1').style.backgroundPosition = '0 -32px';
	}
	//グローバルナビ　から　マウスアウト
	document.getElementById('gnav_home_a1').onmouseout = function(){
		element.style.display = 'none';
		document.getElementById('gnav_home_a1').style.backgroundPosition = '0 0';
	}
	//プルダウン　に　マウスオーバー
	element.onmouseover = function(){
		element.style.display = 'block';
	}
	//プルダウン　から　マウスアウト
	element.onmouseout = function(){
		element.style.display = 'none';
	}

//02のアクション----------------------------------------------
	if (urlstr.match(/\/advantage\//)) {
		document.getElementById('gnav_home_a2').style.backgroundPosition = '0 -32px';
	}else{
	}

	document.getElementById('gnav_home_a2').onmouseover = function(){
		element02.style.display = 'block';
		element.style.display = 'none';
		element03.style.display = 'none';
		element04.style.display = 'none';
		element05.style.display = 'none';
		element06.style.display = 'none';

		if (urlstr.match(/\/advantage\//)) {
		}else{
			document.getElementById('gnav_home_a2').style.backgroundPosition = '0 -32px';
		}
	}
	document.getElementById('gnav_home_a2').onmouseout = function(){
		element02.style.display = 'none';
		if (urlstr.match(/\/advantage\//)) {
		}else{
			document.getElementById('gnav_home_a2').style.backgroundPosition = '0 0';
		}
	}
	element02.onmouseover = function(){
		element02.style.display = 'block';
		if (urlstr.match(/\/advantage\//)) {
		}else{
			document.getElementById('gnav_home_a2').style.backgroundPosition = '0 -32px';
		}
	}
	element02.onmouseout = function(){
		element02.style.display = 'none';
		if (urlstr.match(/\/advantage\//)) {
		}else{
			document.getElementById('gnav_home_a2').style.backgroundPosition = '0 0';
		}
	}

//03のアクション----------------------------------------------
	if (urlstr.match(/\/job|\/jb\/|\/ex_jb_/)) {
		document.getElementById('gnav_home_a3').style.backgroundPosition = '0 -32px';
	}else{
	}

	document.getElementById('gnav_home_a3').onmouseover = function(){
		element03.style.display = 'block';
		element.style.display = 'none';
		element02.style.display = 'none';
		element04.style.display = 'none';
		element05.style.display = 'none';
		element06.style.display = 'none';

		if (urlstr.match(/\/job|\/jb\/|\/ex_jb_/)) {
		}else{
			document.getElementById('gnav_home_a3').style.backgroundPosition = '0 -32px';
		}
	}
	document.getElementById('gnav_home_a3').onmouseout = function(){
		element03.style.display = 'none';
		if (urlstr.match(/\/job|\/jb\/|\/ex_jb_/)) {
		}else{
			document.getElementById('gnav_home_a3').style.backgroundPosition = '0 0';
		}
	}
	element03.onmouseover = function(){
		element03.style.display = 'block';
		if (urlstr.match(/\/job|\/jb\/|\/ex_jb_/)) {
		}else{
			document.getElementById('gnav_home_a3').style.backgroundPosition = '0 -32px';
		}
	}
	element03.onmouseout = function(){
		element03.style.display = 'none';
		if (urlstr.match(/\/job|\/jb\/|\/ex_jb_/)) {
		}else{
			document.getElementById('gnav_home_a3').style.backgroundPosition = '0 0';
		}
	}

//04のアクション----------------------------------------------
	if (urlstr.match(/\/service\/|\/ex_ccc_|\/ex_ccs_/)) {
		document.getElementById('gnav_home_a4').style.backgroundPosition = '0 -32px';
	}else{
	}

	document.getElementById('gnav_home_a4').onmouseover = function(){
		element04.style.display = 'block';
		element.style.display = 'none';
		element02.style.display = 'none';
		element03.style.display = 'none';
		element05.style.display = 'none';
		element06.style.display = 'none';
		if (urlstr.match(/\/service\/|\/ex_ccc_|\/ex_ccs_/)) {
		}else{
			document.getElementById('gnav_home_a4').style.backgroundPosition = '0 -32px';
		}
	}
	document.getElementById('gnav_home_a4').onmouseout = function(){
		element04.style.display = 'none';
		if (urlstr.match(/\/service\/|\/ex_ccc_|\/ex_ccs_/)) {
		}else{
			document.getElementById('gnav_home_a4').style.backgroundPosition = '0 0';
		}
	}
	element04.onmouseover = function(){
		element04.style.display = 'block';
		if (urlstr.match(/\/service\/|\/ex_ccc_|\/ex_ccs_/)) {
		}else{
			document.getElementById('gnav_home_a4').style.backgroundPosition = '0 -32px';
		}
	}
	element04.onmouseout = function(){
		element04.style.display = 'none';
		if (urlstr.match(/\/service\/|\/ex_ccc_|\/ex_ccs_/)) {
		}else{
			document.getElementById('gnav_home_a4').style.backgroundPosition = '0 0';
		}
	}

//05のアクション----------------------------------------------
	if (urlstr.match(/\/knowhow\//)) {
		document.getElementById('gnav_home_a5').style.backgroundPosition = '0 -32px';
	}else{
	}

	document.getElementById('gnav_home_a5').onmouseover = function(){
		element05.style.display = 'block';
		element.style.display = 'none';
		element02.style.display = 'none';
		element03.style.display = 'none';
		element04.style.display = 'none';
		element06.style.display = 'none';

		if (urlstr.match(/\/knowhow\//)) {
		}else{
			document.getElementById('gnav_home_a5').style.backgroundPosition = '0 -32px';
		}
	}
	document.getElementById('gnav_home_a5').onmouseout = function(){
		element05.style.display = 'none';
		if (urlstr.match(/\/knowhow\//)) {
		}else{
			document.getElementById('gnav_home_a5').style.backgroundPosition = '0 0';
		}
	}
	element05.onmouseover = function(){
		element05.style.display = 'block';
		if (urlstr.match(/\/knowhow\//)) {
		}else{
			document.getElementById('gnav_home_a5').style.backgroundPosition = '0 -32px';
		}
	}
	element05.onmouseout = function(){
		element05.style.display = 'none';
		if (urlstr.match(/\/knowhow\//)) {
		}else{
			document.getElementById('gnav_home_a5').style.backgroundPosition = '0 0';
		}
	}

//06のアクション----------------------------------------------
	//グローバルナビ　に　マウスオーバー
	document.getElementById('gnav_home_a6').onmouseover = function(){
		element06.style.display = 'block';
		element.style.display = 'none';
		element02.style.display = 'none';
		element03.style.display = 'none';
		element04.style.display = 'none';
		element05.style.display = 'none';
		document.getElementById('gnav_home_a6').style.backgroundPosition = '0 -32px';
	}
	//グローバルナビ　から　マウスアウト
	document.getElementById('gnav_home_a6').onmouseout = function(){
		element06.style.display = 'none';
		document.getElementById('gnav_home_a6').style.backgroundPosition = '0 0';
	}
	//プルダウン　に　マウスオーバー
	element06.onmouseover = function(){
		element06.style.display = 'block';
		document.getElementById('gnav_home_a6').style.backgroundPosition = '0 -32px';
	}
	//プルダウン　から　マウスアウト
	element06.onmouseout = function(){
		element06.style.display = 'none';
		document.getElementById('gnav_home_a6').style.backgroundPosition = '0 0';
	}

}
