$(document).ready(function(){
	//	画面の高さを調整する関数
	var adjustDisplay=function(){
		var main_height=parseInt($(window).height(),10) - parseInt($('#header').css('height'),10) - parseInt($('#footer').css('height'),10) -70;
		$('.page_main').css('min-height',main_height+'px');
	};
	
	//	ドキュメント読み込み時に起動
	adjustDisplay();
	
	//	画面リサイズ時に起動
	$(window).bind("resize",function(){
			adjustDisplay();
		});
});
