diff --git a/views_slideshow_simple_pager.module b/views_slideshow_simple_pager.module
index 82fd57e..fd34cfd 100644
--- a/views_slideshow_simple_pager.module
+++ b/views_slideshow_simple_pager.module
@@ -33,12 +33,23 @@ function template_preprocess_views_slideshow_simple_pager(&$vars) {
 
   // Override the (empty) rendered field items with our simple pager.
   $vars['rendered_field_items'] = '';
-  if (empty($vars['settings']['hide_on_single_slide']) && count($vars['view']->result) > 1) {
+  if (empty($vars['settings']['hide_on_single_slide']) || count($vars['view']->result) > 1) {
     foreach ($vars['view']->result as $count => $node) {
-      $vars['rendered_field_items'] .= theme('views_slideshow_pager_field_item', array('vss_id' => $vars['vss_id'], 'item' => $count + 1, 'count' => $count, 'location' => $vars['location']));
+      $counted = $count + 1;
+      $vars['rendered_field_items'] .= theme('views_slideshow_pager_field_item', array('vss_id' => $vars['vss_id'], 'item' => '<a href="#">' . $counted . '</a>', 'count' => $count, 'location' => $vars['location']));
     }
   }
 
   // Clone the pager fields JavaScript object and methods.
   drupal_add_js('Drupal.viewsSlideshowSimplePager = Drupal.viewsSlideshowPagerFields || {};', 'inline');
+  
+  // Add anchor tags in the pager.
+  drupal_add_js('var uniquePagerID = 
+    jQuery(".views-slideshow-pager-field-item").click(function() { 
+      var eID = jQuery(this).attr("id").replace("views_slideshow_pager_field_item_bottom_",""); 
+      var ssID = eID.substring(0,eID.lastIndex("_")); 
+      var sN = eID.substring(eID.lastIndex("_") + 1); 
+      Drupal.viewsSlideshow.action({ "action": "goToSlide", "slideshowID": ssID, "slideNum": sN });
+    });
+  ', 'inline');
 }
