$(document).ready(function() {
        
  var interval;
      	  
  $('#featured ul')
      .roundabout()
      .hover(
          function() {
              // oh no, it's the cops!
              clearInterval(interval);
          },
          function() {
              // false alarm: PARTY!
              interval = startAutoPlay();
          }
      );
  
  // let's get this party started
  interval = startAutoPlay();  
	
  function startAutoPlay() {
	  return setInterval(function() {
	      $('#featured ul').roundabout_animateToPreviousChild();
	  }, 5000);
  }
      
});
