jQuery cycle2: Can I have multiple page parameters?

jQuery cycle2: Can I have multiple page parameters?

I'm using the Cycle2 plugin as part of a SpaciousPro theme and I need to be able to have a second set of pagers that highlight as the slides cycle through. 

In the example below, I'd like to be able to add a second ID after #controllers and a second class after active to piggyback on the functionality but I'm getting an error when I attempt to do that. 

Is that possible? 
  1. if(typeof spacious_slider_value !== 'undefined') {
  2.    var transition_effect = spacious_slider_value.transition_effect;
  3.    var transition_delay = parseInt ( spacious_slider_value.transition_delay, 10 );
  4.    var transition_duration = parseInt ( spacious_slider_value.transition_duration, 10 );
  5.    jQuery('.slider-cycle').cycle({
  6.       fx: transition_effect,
  7.       timeout: transition_delay,
  8.       speed: transition_duration,
  9.       slides: '> div',
  10.       pager: '> #controllers',
  11.       pagerActiveClass: 'active',
  12.       pagerTemplate: '<a></a>',
  13.       pauseOnHover: true,
  14.       autoHeight: 'container',
  15.       swipe: true,
  16.       swipeFx: 'scrollHorz',
  17.       log: false
  18.    });
  19. }