diff --git views-cycle.tpl.php views-cycle.tpl.php
index a21f4be..e51da6e 100755
--- views-cycle.tpl.php
+++ views-cycle.tpl.php
@@ -1,6 +1,6 @@
 <?php // $Id: views-cycle.tpl.php,v 1.1.2.4 2010-07-20 18:26:37 crell Exp $ ?>
 <?php echo $js_settings; ?>
-<div class="views-cycle item-list">
+<div class="views-cycle item-list <?php echo $skin_id; ?>">
   <?php if (!empty($title)) : ?>
     <h3><?php print $title; ?></h3>
   <?php endif; ?>
diff --git views_cycle.theme.inc views_cycle.theme.inc
index fb3c418..86281c4 100755
--- views_cycle.theme.inc
+++ views_cycle.theme.inc
@@ -19,6 +19,9 @@ function template_preprocess_views_cycle(&$vars, $hook) {
   // Generate a unique ID for this cycle instance that we can pass to JS.
   $vars['cycle_id'] = 'views-cycle-'. $view->name .'-'. $view->style_plugin->display->id;
 
+  // Store the skin so templates can add it as a class.
+  $vars['skin_id'] = str_replace('_', '-', $options['skin']);
+
   // The $settings array is passed forward to Javascript to inform the code how
   // to build the cycle slideshow.  We'll convert this to full Drupal.settings
   // format below.
