/*------------------------------ 

	common.js
	jQueryを使用しています。

------------------------------ */

$(document).ready(function(){




	// ===============================================
	// 段落内の改行後、1文字インデント
	// ===============================================
	$("p br").after("　");


	// ===============================================
	// テーブルを1行ごとに色分け
	// ===============================================
	$("table.stripes tr:odd").css('background-color' , '#fafafa');


	// ===============================================
	// globalNaviのアクティブボタンの画像変更
	// ===============================================
	var img = $("#globalNavi ul li.active img").attr('src');
	if (img) {
		var newimg = img.replace('-trans' , '-on-trans');
		$("#globalNavi ul li.active img").attr('src' , newimg);
	}

	// ===============================================
	// ★フッタのサイトマップリンクを消す
	// ===============================================
	 $("#footer li:last-child").remove();



	// ===============================================
	// フッタリンクに境界線「｜」を付ける
	// ===============================================
	$("#footer li") .not(':first-child' , this)
					.before('| ');


	// ===============================================
	// ホームにもどるボタン
	// ===============================================
	$("button#gohome").click(function() {
		document.location = "http://biomass-hokuriku.jp/";
	});

});
