diff -rupN colorbox/colorbox.admin.inc colorbox_tweaks/colorbox.admin.inc
--- colorbox/colorbox.admin.inc	2010-04-03 04:30:47.000000000 -0400
+++ colorbox_tweaks/colorbox.admin.inc	2010-04-09 19:39:26.000000000 -0400
@@ -157,6 +157,13 @@ function colorbox_admin_settings() {
     '#default_value' => variable_get('colorbox_slideshow', 0),
     '#description' => t('An automatic slideshow to a content group / gallery.'),
   );
+  $form['colorbox_custom_settings']['colorbox_slideshowAuto'] = array(
+    '#type' => 'radios',
+    '#title' => t('slideshowAuto'),
+    '#options' => array(0 => t('No'), 1 => t('Yes')),
+    '#default_value' => variable_get('colorbox_slideshowAuto', 1),
+    '#description' => t('Sets if slideshow will automatically start to play.'),
+  );  
   $form['colorbox_custom_settings']['colorbox_text_current'] = array(
     '#type' => 'textfield',
     '#title' => t('Current'),
diff -rupN colorbox/colorbox.install colorbox_tweaks/colorbox.install
--- colorbox/colorbox.install	2010-04-03 07:43:25.000000000 -0400
+++ colorbox_tweaks/colorbox.install	2010-04-09 19:36:20.000000000 -0400
@@ -41,6 +41,7 @@ function colorbox_uninstall() {
   variable_del('colorbox_pages');
   variable_del('colorbox_path');
   variable_del('colorbox_slideshow');
+  variable_del('colorbox_slideshowAuto');  
   variable_del('colorbox_style');
   variable_del('colorbox_text_close');
   variable_del('colorbox_text_current');
diff -rupN colorbox/colorbox.module colorbox_tweaks/colorbox.module
--- colorbox/colorbox.module	2010-04-03 04:23:37.000000000 -0400
+++ colorbox_tweaks/colorbox.module	2010-04-09 19:35:50.000000000 -0400
@@ -146,6 +146,7 @@ function _colorbox_doheader() {
       'speed' => variable_get('colorbox_transition_speed', 350),
       'opacity' => variable_get('colorbox_opacity', '0.9'),
       'slideshow' => variable_get('colorbox_slideshow', 0) ? TRUE : FALSE,
+      'slideshowAuto' => variable_get('colorbox_slideshowAuto', 0) ? TRUE : FALSE,      
       'current' => variable_get('colorbox_text_current', '{current} of {total}'),
       'previous' => variable_get('colorbox_text_previous', '« Prev'),
       'next' => variable_get('colorbox_text_next', 'Next »'),
diff -rupN colorbox/js/colorbox.js colorbox_tweaks/js/colorbox.js
--- colorbox/js/colorbox.js	2010-04-03 04:39:19.000000000 -0400
+++ colorbox_tweaks/js/colorbox.js	2010-04-09 19:58:21.000000000 -0400
@@ -6,11 +6,24 @@ Drupal.behaviors.initColorbox = function
     speed:settings.speed,
     opacity:settings.opacity,
     slideshow:settings.slideshow,
+    slideshowAuto:settings.slideshowAuto,    
     maxWidth:'100%',
     maxHeight:'100%',
     current:settings.current,
     previous:settings.previous,
     next:settings.next,
-    close:settings.close
+    close:settings.close,
+	title: function(){
+		//setting for wysiwyg images that use colorbox from image resize. The module does something similiar just more advance ONLY if printed with cck//
+		var checkTitle = $(this).find('img').attr("title");
+		var checkAlt = $(this).find('img').attr("alt");
+		var newTitle = '';
+		if( checkTitle == '' ){
+			newTitle = checkAlt;
+		}
+	    return newTitle;
+	}    
   });
 };
+
+
