function chk_fit() {
	var w = $('html').width();
	var offsety = w * 1200 / 1920;
	if(w <= 1000) {
		$("#flashbox").css("height", 860);
		$("#flashbox").css("width", 1000);
	} else if (w >= 1350) {
		$("#flashbox").css("height", offsety+20);
		$("#flashbox").css("width", "100%");
	} else {
		$("#flashbox").css("height", 860);
		$("#flashbox").css("width", "100%");
	}
}
