﻿//データの読み込み終了後に初期化を実行
$(document).ready(checkSize);
$(window).resize(checkSize);

var flashW = 970;
var flashH = 685;

function checkSize() {
	var ua = navigator.userAgent;       // ユーザーエージェント
	var nWidth, nHeight;                   // サイズ
	var nHit = ua.indexOf("MSIE");     // 合致した部分の先頭文字の添え字
	var bIE = (nHit >=  0);                 // IE かどうか
	var bVer6 = (bIE && ua.substr(nHit+5, 1) == "6");  // バージョンが 6 かどうか
	var bStd = (document.compatMode && document.compatMode=="CSS1Compat"); // 標準モードかどうか
	if (bIE) {
		if (bVer6 && bStd) {
			nWidth = document.documentElement.clientWidth;
			nHeight = document.documentElement.clientHeight;
		} else {
			nWidth = document.body.clientWidth;
			nHeight = document.body.clientHeight;
		}
	} else {
		nWidth = window.innerWidth;
		nHeight = window.innerHeight;
	}
	//
	if(nWidth < flashW){
		$("#flashAreaContent").css("width",flashW+"px");
	}else{
		$("#flashAreaContent").css("width","100%");
	}
	if(nHeight < flashH){
		$("#flashAreaContent").css("height",flashH+"px");
	}else{
		$("#flashAreaContent").css("height","100%");
	}
}

