Currently, I have a jQuery Cycle plugin that allows the image to scroll. With it's callback I am calling this function
function onAfterVideoScroll() {
$('.myRemote.active').removeClass("active").next().addClass("active");
}
This SHOULD be removing the current class from another set of links, and adding the class to the it's next sibling.
This is to keep whichever image is showing it's button predecessor will be active so the user can tell which button is currently showing on the slideshow.
If this makes sense, please let me know why it will remove the active class but it never gives the sibling the active class.
Thanks!