/*ページ読み込み時に実行*/
$(window).ready(function() {
	/*背景　白をページサイズに合わせて可変させる*/
	BackGround_White () ;
});


/*ブラウザサイズ変更時に実行*/
$(window).resize(function(){
    BackGround_White ();
});

/*ブラウザサイズに合わせてコンテンツエリアを調整*/
function BackGround_White () {
	var WindowH = $( window ).height() ;
	var ScreenH = $( "#Screen_Area" ).height() ;
	var WhiteH = $( "#Contents_Area_Top" ).height() ;
	if ( WindowH - ScreenH > WhiteH ) {
		$( "#Contents_Area_Top" ).height( WindowH - ScreenH ) ;
	}
}

	
