Index: contrib/views_slideshow_singleframe/views_slideshow_singleframe.theme.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views_slideshow/contrib/views_slideshow_singleframe/Attic/views_slideshow_singleframe.theme.inc,v
retrieving revision 1.1.2.1.2.11
diff -u -p -r1.1.2.1.2.11 views_slideshow_singleframe.theme.inc
--- contrib/views_slideshow_singleframe/views_slideshow_singleframe.theme.inc	6 Nov 2009 06:21:55 -0000	1.1.2.1.2.11
+++ contrib/views_slideshow_singleframe/views_slideshow_singleframe.theme.inc	14 Nov 2009 22:05:15 -0000
@@ -41,7 +41,8 @@ function theme_views_slideshow_singlefra
   // If we have the jQ module installed, use that to add the Cycle plugin if possible.
   // That allows for version control.
   if (module_exists('jq')) {
-    if (in_array('cycle', jq_plugins())) {
+    $loaded_plugins = jq_plugins();
+    if (!empty($loaded_plugins['cycle'])) {
       $js = jq_add('cycle');
     }
   }
Index: contrib/views_slideshow_thumbnailhover/views_slideshow_thumbnailhover.theme.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views_slideshow/contrib/views_slideshow_thumbnailhover/Attic/views_slideshow_thumbnailhover.theme.inc,v
retrieving revision 1.1.2.1.2.9
diff -u -p -r1.1.2.1.2.9 views_slideshow_thumbnailhover.theme.inc
--- contrib/views_slideshow_thumbnailhover/views_slideshow_thumbnailhover.theme.inc	6 Nov 2009 06:21:55 -0000	1.1.2.1.2.9
+++ contrib/views_slideshow_thumbnailhover/views_slideshow_thumbnailhover.theme.inc	14 Nov 2009 22:05:16 -0000
@@ -32,7 +32,8 @@ function template_preprocess_views_slide
   drupal_add_js(array('viewsSlideshowThumbnailHover' => array('#views_slideshow_thumbnailhover_main_'. $vars['id'] => $settings)), 'setting');
   if ($settings['pager_event'] == 'hoverIntent') {
     if (module_exists('jq')) {
-      if (in_array('hoverIntent', jq_plugins())) {
+      $loaded_plugins = jq_plugins();
+      if (!empty($loaded_plugins['hoverIntent'])) {
         jq_add('hoverIntent');
       }
     }
@@ -51,7 +52,8 @@ function theme_views_slideshow_thumbnail
   // If we have the jQ module installed, use that to add the Cycle plugin if possible.
   // That allows for version control.
   if (module_exists('jq')) {
-    if (in_array('cycle', jq_plugins())) {
+    $loaded_plugins = jq_plugins();
+    if (!empty($loaded_plugins['cycle'])) {
       $js = jq_add('cycle');
     }
   }
