--- paging.module	2010-06-01 00:14:39.000000000 -0700
+++ paging.module	2010-06-05 13:11:34.000000000 -0700
@@ -29,6 +29,7 @@ function paging_theme() {
     'paging_drop_down' => array('tags' => NULL, 'limit' => NULL, 'element' => NULL, 'parameters' => NULL, 'quantity' => NULL),
     // Helper theme function to generates the select list for drop down pager.
     'paging_drop_down_option' => array('url_chunk' => NULL, 'page_name' => NULL, 'page_no' => NULL, 'selected' => NULL),
+    'pager_wrapper' => array('output' => NULL),
   );
 }
 
@@ -640,7 +641,7 @@ function paging_pager_style($node = NULL
   // Decode the comma entity.
   $output = str_replace('%2C', ',', theme($theme_widget, NULL, 1, $element, array(), 9, $node->page_names));
 
-  return '<div class="links">' . $output . '</div>';
+  return theme('pager_wrapper', $output);
 }
 
 /**
@@ -843,3 +844,16 @@ $(document).ready(function() {
 function theme_paging_drop_down_option($url_chunk = NULL, $page_name = NULL, $page_no = NULL, $selected = NULL) {
   return '<option' . ($selected ? ' selected=""' : '') . ' value="' . $url_chunk . '">' . $page_name . '</option>';
 }
+
+/**
+ * Format the wrapper around pager links.
+ *
+ * @param $output
+ *   The themed pager links
+ *
+ * @return
+ *   An HTML string.
+ */
+function theme_pager_wrapper($output){
+  return '<div class="links">' . $output . '</div>';
+}
\ No newline at end of file
