diff --git a/includes/jcarousel.views.inc b/includes/jcarousel.views.inc
index 118e50d..9049eb2 100644
--- a/includes/jcarousel.views.inc
+++ b/includes/jcarousel.views.inc
@@ -208,6 +208,7 @@ function template_preprocess_jcarousel_view(&$variables) {
 
   // Give each item a class to identify where in the carousel it belongs.
   foreach ($variables['rows'] as $id => $row) {
-    $variables['row_classes'][$id] = 'jcarousel-item-' . ($id + 1 + $pager_offset);
+    $zebra = ($id % 2 == 0) ? 'odd' : 'even';
+    $variables['row_classes'][$id] = 'jcarousel-item-' . ($id + 1 + $pager_offset) . ' ' . $zebra;
   }
 }
