Index: contrib/views_slideshow_singleframe/views_slideshow_singleframe.views_slideshow.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views_slideshow/contrib/views_slideshow_singleframe/Attic/views_slideshow_singleframe.views_slideshow.inc,v
retrieving revision 1.1.2.1.2.8
diff -u -p -r1.1.2.1.2.8 views_slideshow_singleframe.views_slideshow.inc
--- contrib/views_slideshow_singleframe/views_slideshow_singleframe.views_slideshow.inc	28 Sep 2009 21:37:38 -0000	1.1.2.1.2.8
+++ contrib/views_slideshow_singleframe/views_slideshow_singleframe.views_slideshow.inc	3 Oct 2009 08:03:27 -0000
@@ -34,6 +34,28 @@ function views_slideshow_singleframe_vie
     '#collapsible' => TRUE,
     '#attributes' => array('class' => 'singleframe'),
   );
+  $form['singleframe']['js'] = array(
+    '#value' => "<script type='text/javascript'>
+                  if ($('#edit-style-options-singleframe-pager').val() > 0) {
+                    $('#edit-style-options-singleframe-pager-type-wrapper').show('normal');
+                    $('#edit-style-options-singleframe-pager-hover-wrapper').show('normal');
+                  }
+                  else {
+                    $('#edit-style-options-singleframe-pager-type-wrapper').hide('normal');
+                    $('#edit-style-options-singleframe-pager-hover-wrapper').hide('normal');
+                  }
+                  $('#edit-style-options-singleframe-pager').change(function() {
+                    if ($(this).val() > 0) {
+                      $('#edit-style-options-singleframe-pager-type-wrapper').show('normal');
+                      $('#edit-style-options-singleframe-pager-hover-wrapper').show('normal');
+                    }
+                    else {
+                      $('#edit-style-options-singleframe-pager-type-wrapper').hide('normal');
+                      $('#edit-style-options-singleframe-pager-hover-wrapper').hide('normal');
+                    }
+                  });
+                </script>",
+  );
   $form['singleframe']['timeout'] = array(
     '#type' => 'textfield',
     '#title' => t('Timer delay'),
