var Site = {
	resize: function() {
		if(Site.flash) {
			var size = window.getSize();
			var height = (size.x / (1300 / 750)).round();

			Site.flash.height = height + 'px';
		}
	}, 

	swfObjectResult: function(result) {
		if(result.success) {
			Site.flash = $(result.ref);

			window.addEvent('resize', Site.resize);

			Site.resize();
		}
	}
}
