--- D:/slideshows/viewscarousel-6.x-1.0/viewscarousel/viewscarousel.module.orig Mon Aug 09 22:00:16 2010 +++ D:/slideshows/viewscarousel-6.x-1.0/viewscarousel/viewscarousel.module.mod Mon Oct 04 04:43:30 2010 @@ -12,6 +12,20 @@ return array('api' => 2); } +/** + * Implementation of hook_views_init(). + */ +function viewscarousel_views_init() +{ + //Add the JS lib + if (module_exists('jq')) { + $loaded_plugins = jq_plugins(); + if (!empty($loaded_plugins['jcarousel'])) { + $js1 = jq_add('jcarousel'); + } + } +} + function template_preprocess_viewscarousel_view(&$vars) { drupal_add_css(drupal_get_path('module', 'viewscarousel') .'/jquery.jcarousel.css');