$(document).ready(function() {
	
	var windowHeight = $(window).height();
	$('div.flash object').css('height', windowHeight+'px');
	
	setInterval(function() {
		var layerHeight = $(document).height();
		$('#layer').css('height', layerHeight+'px');
	}, 250);
	
});