2

I’m not sure why the interval isn’t looping. I’ve followed tutorials exactly but not luck. Suggestions?

$(document).ready(function(){
  setInterval(function() {
    $('.current').removeClass('current').next().addClass('current');  
    }, 2000);
});

Updated: http://jsfiddle.net/pa7aU/3/