jQuery.fn.loadFlashAjax = function() {
	
	var args = arguments[0] || {};
	var flashMovie = args.flashMovie;
	var serverSideFile = args.serverSideFile;
	var dataOutput = this;
	var methodType = args.methodtype || "POST";
	var elDataType = args.elDataType || "html";
	
	jQuery.ajax({
		type: methodType,
    	url: serverSideFile,
		data: "movie=" + flashMovie,
		dataType: elDataType,
		success: function(data) {
			jQuery(dataOutput).html(data);
		}
	});
}; 