$(window).resize(function() {
	//$('#log').append('<div>Handler for .resize() called.</div>');
	//alert("resize");
	onWindowResize();
});

function onWindowResize(){
	//alert($(window).height()); 
	if($(window).height()<680){
		//flashContent
		$('#flashContent').height(680);
		$('#flashContent').width('100%');
		//$("body").css("overflow", "auto");
	}else{
		$('#flashContent').height('100%');
		$('#flashContent').width(1018);
		//$('#index').show();
		//$("body").css("overflow", "hidden");
	}
	
	
	
}
	
