var agentGalleryQuickScroller = null;

$(document).ready(function() {
  var inView = 5;
  
  // For a C4 theme, change to 6 in view
  if ($('#agentGalleryWrapper').parent().hasClass('c4')) {
    inView = 6;
  }
  
  agentGalleryQuickScroller = new quicklinkScroller({
    id: "#agentGallery", 
    objectName: "agentGalleryQuickScroller", 
    windowElement: "#agents", 
    directionArrows: {
      enabled: true, 
      position: 'top' 
    },
    speed: 100, 
    autoScroll: false, 
    targetElement: ".agent", 
    loop: true, 
    itemsInView: inView, 
    thumbnails: false 
  });
});

