--- youtube_cck/youtube_cck.module	2007-03-23 17:54:50.000000000 -0400
+++ youtube_cck_new/youtube_cck.module	2007-06-03 03:10:09.178109888 -0400
@@ -501,9 +501,11 @@
   return $output;
 }
 
-function theme_youtube_cck_youtube_flash($embed, $width, $height) {
+function theme_youtube_cck_youtube_flash($embed, $width, $height, $autoplay = FALSE) {
+  $autoplay = $autoplay ? '&autoplay=1' : '';
+
   if ($embed) {
-    $output .= "<object height=\"$height\" width=\"$width\"><param name=\"movie\" value=\"http://www.youtube.com/v/$embed\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/$embed\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" height=\"$height\" width=\"$width\"></object>";
+    $output .= "<object height=\"$height\" width=\"$width\"><param name=\"movie\" value=\"http://www.youtube.com/v/$embed$autoplay\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/$embed$autoplay\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" height=\"$height\" width=\"$width\"></object>";
   }
   return $output;
 }
