function fixedHeight() {
	_currentState = "splash";
}

function fluidHeight() {
	_currentState = "main";

	var h = $(window).height();
	$('#swfwrapper').height(h);
}

$(window).resize(function(){	
	if( _currentState == "main" ){
		var h = $(window).height();
		$('#swfwrapper').height(h);
	}
});

