function flashResize(){
	var flash_width = $("#flash_top_wrapper").width();
	var flash_height = $("#flash_top_wrapper").height();
	if ((flash_width < 1000 && flash_height < 380) || (flash_width < 1000 && flash_height >= 380)) {
		flash_height = 380;
		$("#flash_top_wrapper").css({ width:"1000px", height:"380px"});
	}
	else if (flash_width >= 1000 && flash_height < 380) {
		flash_height = 380;
		$("#flash_top_wrapper").css({ width:"100%", height:"380px"});
	}
	$("#center .content").css("padding-top", flash_height);
}

$(document).ready(function(){
	flashResize();
	$(window).resize(function(){
		$("#flash_top_wrapper").css({ width:"100%", height:"54%"});
		if ($.browser.msie && $.browser.version >= '7') {
			var flash_width = $("#flash_top_wrapper").width();
			var flash_height = $("#flash_top_wrapper").height();
			if ((flash_width < 1000 && flash_height < 380) || (flash_width < 1000 && flash_height >= 380)) {
				window.location=window.location;
			}
		}
		flashResize()
	});
});