$(document).ready(
	function() {
		$('.embed-swf').each(
			function() {
				var _this = $(this);
				embedSwf( 
					_this.attr('path'), 
					_this.attr('id'),
					_this.attr('width'),
					_this.attr('height')
				);
			}
		)
	}
);

function embedSwf(path, id, width, height) {
	var flashvars = {};
	var params = {
	  wmode: "transparent"
	};
	var attributes = {};
	
	swfobject.embedSWF(path, id, width, height, "9.0.0", false, flashvars, params, attributes);
}
