jQuery Media Plugin Creates Object Without an ID Attribute

jQuery Media Plugin Creates Object Without an ID Attribute

I am using the jQuery media plugin ( http://jquery.malsup.com/media/ ) along with the ElementIT Flash Uploader ( http://www.element-it.com/multiple-file-upload/flash-uploader.aspx ). I am using an old version of the uploader (v 1.7) but everything has been working great, until I updated the jQuery media plugin to the latest version.

Once the media plugin embeds the flash object, it is missing the ID attribute. 
  1. $("#flashloader").media({
  2.         width:     350, 
  3.         height:    210, 
  4.         autoplay:  true, 
  5.         src:       'includes/ElementITMultiPowUpload1.7.swf', 
  6.         attrs:     { id:  'FlashFileUpload' }, // object/embed attrs 
  7.         params:    { bgColor: '#ffffff', Quality: 'High', AllowScriptAccess: 'Always', SeamlessTabbing: '1', wmode: 'transparent' }, // object params/embed attrs 
  8.         flashvars: {    uploadUrl: '<?php echo htmlentities($_SERVER['PHP_SELF']); ?>', 
  9.                         redirectUploadUrl: 'files.php',
  10.                         labelUploadVisible: 'No',
  11.                         uploadButtonVisible: 'No',
  12.                         backgroundColor: '#FFFFFF',
  13.                         listTextSelectedColor: '#000000',
  14.                         listBackgroundColor: '#FFFFFF',
  15.                         listSelectionColor: '#DFE7F2',
  16.                         listUploadedColor: '#DFE7F2',
  17.                         listRollOverColor: '#ffffcc',
  18.                         useExternalInterface: 'yes',
  19.                         filesListX: '2',
  20.                         filesListY: '30',
  21.                         progressBarX: '7',
  22.                         progressBarY: '155',
  23.                         labelInfoX: '7',
  24.                         labelInfoY: '160' },
  25.         caption:   false // supress caption text    
  26.     });
Here is the object it creates (missing the ID attribute)
  1. <object width="350" height="210" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" data="https://localhost/ssp/includes/ElementITMultiPowUpload1.7.swf" codebase="https://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7" type="application/x-shockwave-flash">
Here is some additional HTML:
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />

Since I specifying an ID, I'm not sure it is not making it as an attribute for the object element.
  1. attrs:     { id:  'FlashFileUpload' }, // object/embed attrs 

Any recommendations?