var fv = {xmlFile: _x};
var ps = {wmode: "opaque"};

$(document).ready(function(){
	var fm = $("#footer").height() + $("#menu-container").height();
	var fc = $("#flash-container");

	fc.height($(window).height() - fm);
	$(window).resize(function(){
		fc.height($(window).height() - fm);
	});

	swfobject.embedSWF(
		_m + "swfs/home.swf",	// swf location
		"flash",						// element id
		"100%",						// width
		"100%",						// height
		"9.0.0",						// required flash version
		"",							// express install url
		fv,							// flash vars declared on top
		ps,
		null,
		onSwfLoad
	);
});

function onSwfLoad(e){
	if(!e.success) $("#homepage_image").show();
}

