function loadSwf(swf, width, height) {
	$("#flashCard").replaceWith('<div id="flashCard"></div>');
	$("#flashContainer")
		.animate( {width: width+"px"}, 500)
		.animate( {height: height+"px"}, 500, function() {
			swfobject.embedSWF(_siteURL+"project/swf/"+swf, "flashCard", width, height, "9.0.0");
		});
}